

MCQOPTIONS
Saved Bookmarks
This section includes 3 Mcqs, each offering curated multiple-choice questions to sharpen your Object Oriented Programming Using C++ knowledge and support exam preparation. Choose a topic below to get started.
1. |
Static methods can t be made abstract in java. |
A. | True |
B. | False |
Answer» B. False | |
2. |
If a function declared as abstract in base class doesn t have to be defined in derived class then ______ |
A. | Derived class must define the function anyhow |
B. | Derived class should be made abstract class |
C. | Derived class should not derive from that base class |
D. | Derived class should not use that function |
Answer» C. Derived class should not derive from that base class | |
3. |
It is ____________________ to define the abstract functions. |
A. | Mandatory for all the classes in program |
B. | Necessary for all the base classes |
C. | Necessary for all the derived classes |
D. | Not mandatory for all the derived classes |
Answer» D. Not mandatory for all the derived classes | |