Question Detail

Inheritance is transitive in nature.

  • True
  • False
Similar Questions :

1. && means ?

  • Logical OR
  • Bitwise OR
  • Logical AND
  • Bitwise AND

2. Enumerator will allocate the memory when its variables are defined.

  • True
  • False

3. The symbol ** __ .

  • can be overloaded by changing its datatype.
  • cannot be overloaded, as on overloading its meaning shall be changed.
  • can be overloaded.
  • cannot be overloaded as it is not a C++ operator.

4. int *ptr[5];

  • a pointer of 5 int elements
  • an array of 5 int pointers
  • an array of 5 elements returning an int value
  • none of above

5. 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.
Read more from - C++ Programming Questions Answers - Set 2