download Mastguru Android App

Question Detail

what is the size of int datatype for 32 bit system

  • 1 byte
  • 2 byte
  • 4 byte
  • 8 byte
Similar Questions :

1. C++ programs must contain

  • start()
  • system()
  • main()
  • program()

2. Which type of variables can be referred from anywhere in the c++ code

  • All variables
  • Local variables
  • Universal variables
  • Global variables

3. If no constructor is there, then compiler assumes the class to have a default constructor with no arguments

  • True
  • False

4. How to define a destructor

  • X~() {}
  • X() {}~
  • X() ~{}
  • ~X() {}

5. expression x.y represents as

  • member x of object y
  • member y of object x
  • member y of object pointed by x
  • all of above
Read more from - C++ Programming Questions Answers - Chapter 1
Post a comment