Question Detail 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 Similar Questions : 1. A Variable __ of void type. May be declaredCan be initializedCannot be intializedCannot be declared Answer: Option D 2. C++ is a ? Procedural programming languageStructural programming languageLow level languageObject oriented programming language Answer: Option D 3. The members of a class are ? b) by default are private c) are made private by declaring as private d) none of the above] have no visibility by defaultpublic by defaultprivate by defaultprotected by default Answer: Option C 4. Which among following is not a valid visibility mode in c++ program ? PrivatePublicProtectedLimited Answer: Option D 5. 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. Read more from - C++ Programming Questions Answers - Set 2