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. Even if we define a function in a class, then also we need to declare it first. TrueFalse Answer: Option BExplanation:If we define a function in a class, then also we do not need to declare it first. 2. The process of deriving a class from another derived class is known as ? single inheritancedual inheritancemultiple inheritancemultilevel inheritance Answer: Option D 3. The default visibility mode while inheriting is ? publicprotectedprivatemay be any of above Answer: Option C 4. When a derived class inherits from many base classes, this process is known as ? multiple inheritancemultilevel inheritancedefault inheritancemultiplex inheritance Answer: Option A 5. & operator is ? address operatorindirection operatorlogical andlogical or Answer: Option A Read more from - C++ Programming Questions Answers - Set 2