Choose a topic to test your knowledge and improve your C/C skills
Which was the first purely object oriented programming language developed?
Which of the following best defines a class?
Who invented OOP?
What is the additional feature in classes that was not in structures?
Which is not feature of OOP in general definitions?
Which Feature of OOP illustrated the code reusability?
Which language does not support all 4 types of inheritance?
How many classes can be defined in a single program?
When OOP concept did first came into picture?
Why Java is Partially OOP language?
Which concept of OOP is false for C++?
Which header file is required in C++ to use OOP?
Which of the two features match each other?
Which feature allows open recursion among the following?
Which of the following is not type of class?
Class is pass by _______
What is default access specifier for data members or member functions declared within a class without any specifier in C++?
Which is known as a generic class? )
Size of a class is _____________
Which class can have member functions without their implementation?
Which of the following describes a friend class?
What is the scope of a class nested inside another class?
Which among the following is false for a member function of a class?
Which syntax for class definition is wrong?
Which of the following pairs are similar?
Which among the following is false for class features?
Instance of which type of class can t be created?
Which definition best describes an object?
How many objects can be declared of a specific class in a single program?
Which among the following is false?
Which of the following is incorrect?
The object can t be __________
What is size of the object of following class (64 bit system)? class student { int rollno char name[20] static int studentno }
How members of an object are accessed?
If a local class is defined in a function which of the following is true for an object of that class?
Which among the following is wrong?
Object declared in main() function _____________
When an object is returned___________
Which among the following is correct?
Which among following is correct for initializing the class below? class student{ int marks int cgpa public: student(int i int j){ marks=I cgpa=j } }