0% found this document useful (0 votes)
31 views1 page

C++ Programs: Key Examples and Concepts

The document contains a list of programming tasks in C++ including finding the largest number among three numbers, checking if a number is prime, determining if a number is even or odd, calculating the factorial of a number, and creating a student class. It also includes sorting algorithms like Selection Sort, Bubble Sort, and Insertion Sort using Object-Oriented Programming concepts, as well as a simple linked list implementation with various operations. Each task is aimed at enhancing programming skills and understanding of C++ concepts.

Uploaded by

Archit iphone
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views1 page

C++ Programs: Key Examples and Concepts

The document contains a list of programming tasks in C++ including finding the largest number among three numbers, checking if a number is prime, determining if a number is even or odd, calculating the factorial of a number, and creating a student class. It also includes sorting algorithms like Selection Sort, Bubble Sort, and Insertion Sort using Object-Oriented Programming concepts, as well as a simple linked list implementation with various operations. Each task is aimed at enhancing programming skills and understanding of C++ concepts.

Uploaded by

Archit iphone
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Q1. Write a program in C++ to find largest number among three numbers.

Q2. Write a program in C++ to check whether a number is Prime Or Not.


Q3. Write a program in C++ to check whether Number is Even or Odd.
Q4. Write a program in C++ to find factorial of a given number.
Q5. Write a program to create student class, read and print ‘N’ student's details.
Q6. Write a program of Selection Sort using OOP concept.
Q7. Write a program of Bubble Sort using OOP concept.
Q8. Write a program in simple linked list using switch case for create, insertion, delete, display,
search.
Q9. Write a program of Insertion Sort using OOP concept.
Q10. Write a program of Selection Sort using OOP concept.
Q11. Write a program of Insertion Sort using OOP concept.

You might also like