Question Detail What is default visibility mode for members of classes in C++ ? PrivatePublic ProtectedDepends Answer: Option A Similar Questions : 1. What is purpose of abstract class ? to provide help with database connectivity.to provide data input to other classes.to provide security to other classes.to provide an appropriate base class from which other classes can inherit. Answer: Option D 2. The private data members of a class are accessible ? Directly to objects of that classTo any function defined outside a classOnly to the member functionsOnly using keyword static Answer: Option C 3. When a structure refers to itself, it is known as ? encapsulated structurenested structurerecursive structureself-referential structure Answer: Option D 4. 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 5. Operator overloading is ? giving new meaning to existing c++ operatorsmaking c++ operators work with objectsgiving c++ operators more than they can handlemaking new c++ operators Answer: Option A Read more from - C++ Programming Questions Answers - Set 2