[solved] – Question 79046
1Write a program to find prime numbers using class and objects.
2 Write a program to find factorial of a number using class and object in C++.
3 Create a C++ program to check a number is palindrome or not using class and object.
Hint: It can be read the same backwards as forwards, e.g. madam
4 Write a program which can if number is even or odd using class and object in C++.
5 Write a program to find an Armstrong number. You can do it in simple way without using
class.
Hint: it is an integer such that the sum of the cubes of its digits is equal to
the number itself. For example, 371 is an Armstrong number since 3**3 + 7**3 + 1**3 = 371.
6 Write a program to find largest number using OOP concepts.
7 write a program to find C++ program to check whether a character is vowel or consonant
whether using classes and objects or not.
Expert Answer
OR

