Question Detail

Queues are based on ?

  • LIFO
  • FIFO
  • LILO
  • FILO
Similar Questions :

1. Enumerators are stored by the compiler in ?

  • string
  • integer
  • float
  • any of above

2. & operator is ?

  • address operator
  • indirection operator
  • logical and
  • logical or

3. 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

4. Even if we define a function in a class, then also we need to declare it first.

  • True
  • False

5. The derived class constructor

  • never passes any values to base class constructor
  • can pass arguments only to one base class constructor function
  • is responsible for passing the entire test of arguments needed by base class constructors
  • none of above
Read more from - C++ Programming Questions Answers - Set 2