C++ Programming Questions


Q.  When base class is derived in protected mode, then_____________ . 1. public members of base class become private members of derived class. 2. public members of base class become protected members of derived class. 3. public members of base class become public members of derived class. 4. protected members of base class become protected members of derived class. 5. protected members of base class become private members of derived class. 6. protected members of base class become public members of

a. Only 1, 5
b. Only 1, 6
c. Only 2, 6
d. Only 2, 4


ANSWER: See Answer
 
No explanation is available for this question!
MCQs:  Only functions of the class can access the data of the class and they(functions) provides the interface between data, objects and the program. This kind isolation of the data from direct access by the program is called _______________ .
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  A Constructor that does not have any parameters is called____________ Constructor.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  If we have object from ofstream class, then default mode of opening the file is _____ .
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  _______________ is a member function that is declared within a base class and redefined by derived class.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Syntax for Pure Virtual Function is ______________ .
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Logical expressions produce ____________ type results.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  We can initialize a value of static variable of a class only when its object is created. No other initialization is permitted.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  When a base class is privately inherited by the derived class, then_____________ .
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  What is the difference between protected and private access specifiers in inheritance?
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  A friend function does not have 'this' pointer associated with it.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  In nested try blocks, if both inner and outer catch handlers are not able to handle the exception, then ______________ .
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Throwing an unhandled exception causes standard library function then _________ to be invoked.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  In CPP, it is mandatory and must to initialize const variables.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  When a class is defined inside any function or block, it is called ___________ .
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Which of the followings are false statements about Local class? 1. A local class type name can only be used in the enclosing function 2. All the methods of Local classes must be defined inside the class only 3. A Local class can contain static data members. 4. A Local class may contain static functions. 5. Non-static variables of the enclosing function are not accessible inside local classes. 6. Local classes cannot access global types, variables and functions.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Due to ios::trunc mode, the file is truncated to zero length.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  A const object of a class can call non-const member function of the class.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  If an argument to a function is declared as const, then _______ .
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Return type of uncaught_exception() is ________________ .
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Can we write throw clause inside catch handler?
Category: Computer Science MCQs,   Published by: teswesm