Question Detail What is object in C++ ? Object is part of syntax of a class.Object is datatype of a class.Object is an instance of a class.Object is function of a class. Answer: Option C Similar Questions : 1. Size of a char is ? 1234 Answer: Option A 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. The default visibility mode while inheriting is ? publicprotectedprivatemay be any of above Answer: Option C 4. Among following which will give the size of object or type ? CallocMallocSizeofRealloc Answer: Option C 5. Which of the following keywords are used to control access to a class member ? protectedswitchgotofor Answer: Option A Read more from - C++ Programming Questions Answers - Set 2