Classes and Objects
1).What is a class in C++?
2).How do you create an object of a class in C++?
3).Which access specifier allows members to be accessed outside the class?
4).Which of the following defines a constructor in a class?
class Example {
public:
Example() { }
};