Prelim Flashcards
Which feature of OOPS described the reusability of code?
Which of the following is not an OOP?
OOP acronym for
Object Oriented Programming
Which feature of OOPS derives the class from another class?
Which of the following is correct about class?
Which of the following is not an access specifier?
Which of the following OOP concept is not true for the C++ programming language?
What is the extra feature in classes which was not in the structures?
Which operator is used to define a member function outside the class?
Nested member function is?
Which of the following is syntax of C++ class member function?
Which among the following feature does not come under the concept of OOPS?
The combination of abstraction of the data and code is viewed in _______?
Which is private member functions access scope?
Which syntax among the following shows that a member is private in a class?
Which constructor function is designed to copy object of same class type?
Allocation of memory to objects at the time of their construction is known as ______ of objects.
If new operator is used, then the constructor function is _____-_?
Which among the following best describes constructor overloading?
Does constructor overloading include different return types for constructors to be overloaded?
Which among the following is possible way to overload constructor?
Which is executed automatically when the reaches the end of the class scope?
The special character related to destructor is _____?
A destructor is used to destroy the objects that have been created by a _____?
______ provides the flexibility of using different format of data at runtime depending upon the situation.
Which of the following gets called when an object is being created?
Can we define a class without creating constructors?