Question Detail Which among following is not a valid visibility mode in c++ program ? PrivatePublicProtectedLimited Answer: Option D Similar Questions : 1. What is actual syntax of destructor in c++ ? !Classname( )@Classname( )$Classname( )~Classname( ) Answer: Option D 2. 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 3. When a structure refers to itself, it is known as ? encapsulated structurenested structurerecursive structureself-referential structure Answer: Option D 4. 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 5. & operator is ? address operatorindirection operatorlogical andlogical or Answer: Option A Read more from - C++ Programming Questions Answers - Set 2