Question Detail

37. Which of the following statements is false ?

  • Using typedef does not replace the standard C++ data type name with the new name
  • The new name defined by typedef, can be used as a type for another typedef
  • typedef defines new data types
  • None of the above
Similar Questions :

1. Destructors are called ?

  • not defined
  • in any order
  • in the reverse order of constructor calls
  • in the same order of constructor calls

2. Data members and member functions are enclosed within ?

  • union
  • structure
  • class
  • array

3. Which of the following cannot be passed to a function ?

  • Array
  • Reference variable
  • Object
  • File

4. 66. A constructor function is generally defined

  • In the private section of a class
  • In the public section of a class
  • In the protected section of a class
  • None of the above

5. && means ?

  • Logical OR
  • Bitwise OR
  • Logical AND
  • Bitwise AND
Read more from - C++ Programming Questions Answers - Set 2