Question Detail Classes that can be used to instantiate objects are called concrete classes. TrueFalse Answer: Option A Similar Questions : 1. The advantage of declaring a virtual function as pure is ? programs runs fasterearly binding can be achievedyou force any derived class to define its own implementationyou can avoid making the class an abstract class Answer: Option C 2. We can do constructor overloading in C++ ? TrueFalse Answer: Option BExplanation:constructor overloading can be done in C++. 3. A variable is defined within a block in a body of a function. Which of the following are true ? It is visible from the point of definition to the end of the program.It is visible throughout the function.It is visible from the point of definition to the end of the block.It is visible throughout the block. Answer: Option B 4. What is actual syntax of destructor in c++ ? !Classname( )@Classname( )$Classname( )~Classname( ) Answer: Option D 5. The major goal of inheritance in C++ is ? To facilitate the reusability of codeTo help modular programmingTo facilitate the conversion of data typesTo extend the capabilities of a class Answer: Option A Read more from - C++ Programming Questions Answers - Set 2