C++ Programming Questions


Q.  When a child class inherits traits from more than one parent class, this type of inheritance is called _______________ inheritance.

a. Hierarchical
b. Hybrid
c. Multilevel
d. Multiple


ANSWER: See Answer
 
No explanation is available for this question!
MCQs:  Which of the following manipulator is used for the representing octal equivalent of a given decimal number?
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Which of the following is not a casting operator in CPP?
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  ___________ header file is used for manipulators.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  While redefining a virtual function in the derived class, if its prototype is changed then ___________________ .
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  const member function does not allow to modify/alter value of any data member of the class.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  In a program, If there exists a function template with two parameters and normal function say void add(int , int), so add(3,4) will _____________________ .
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Can struct be used as Base class for inheritance ?
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  In case of inheritance where both base and derived class are having constructors, when an object of derived class is created then___________ .
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Which of the following is not a file opening mode ____ .
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Attempting to throw an exception that is not supported by a function call results in calling _____________ library function.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  How can we restrict a function to throw certain exceptions?
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Is it possible to define a constructor with default arguments?
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  The purpose of explicit keyword is to tell the compiler that a certain constructor may not be used to implicitly cast an expression to its class type.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Scope resolution operator is used______ .
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  In case of operator overloading, operator function must be ______ . 1. Static member functions 2. Non- static member functions 3. Friend Functions
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  A try block can be nested under another try block.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  In nested try blocks, there is no need to specify catch handler for inner try block. Outer catch handler is sufficient for the program.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  We can prevent a function from throwing any exceptions.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  Functions called from within a try block may also throw exception.
Category: Computer Science MCQs,   Published by: teswesm
MCQs:  The explicit keyword is an optional decoration for the constructors that takes exactly_____argument.
Category: Computer Science MCQs,   Published by: teswesm