Question Detail Which among following is correct way of declaring object of a class ? Classname Objectname;Class Classname Objectname;Class Classname Object Objectname;Classname Object Objectname; Answer: Option A Similar Questions : 1. int *ptr[5]; a pointer of 5 int elementsan array of 5 int pointersan array of 5 elements returning an int valuenone of above Answer: Option B 2. What is true about Constructor ? Its name is plural of class name.Its name has * symbol before it.Its name is same as of class name.Its name has # symbol before it. Answer: Option C 3. Classes that can be used to instantiate objects are called concrete classes. TrueFalse Answer: Option A 4. 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 5. Which among following is not a valid visibility mode in c++ program ? PrivatePublicProtectedLimited Answer: Option D Read more from - C++ Programming Questions Answers - Set 2