• ০০। A char variable can store either an ASCII character or a Unicode character.
    • ক) True
    • খ) False
  • ০১। A file written in text mode can be read back in binary mode.
    • ক) Yes
    • খ) No
  • ০২। A float is 4 bytes wide, whereas a double is 8 bytes wide.
    • ক) True
    • খ) False
  • ০৩। A float occupies 4 bytes. If the hexadecimal equivalent of these 4 bytes are A, B, C and D, then when this float is stored in memory in which of the following order do these bytes gets stored?
    • ক) ABCD
    • খ) DCBA
    • গ) 0xABCD
    • ঘ) Depends on big endian or little endian architecture
  • ০৪। A function cannot be defined inside another function
    • ক) True
    • খ) False
  • ০৫। A function may have any number of return statements each returning different values.
    • ক) True
    • খ) False
  • ০৬। A function that receives variable number of arguments should use va_arg() to extract arguments from the variable argument list.
    • ক) True
    • খ) False
  • ০৭। A function that receives variable number of arguments should use va_arg() to extract the last argument from the variable argument list.
    • ক) True
    • খ) False
  • ০৮। A header file contains macros, structure declaration and function prototypes.
    • ক) True
    • খ) False
  • ০৯। A long double can be used if range of a double is not enough to accommodate a real number.
    • ক) True
    • খ) False
  • ১০। A macro must always be defined in capital letters.
    • ক) True
    • খ) False
  • ১১। A pointer is
    • ক) A keyword used to create variables
    • খ) A variable that stores address of an instruction
    • গ) A variable that stores address of other variable
    • ঘ) All of the above
  • ১২। A pointer to a block of memory is effectively same as an array
    • ক) True
    • খ) False
  • ১৩। A pointer union CANNOT be created
    • ক) Yes
    • খ) No
  • ১৪। A preprocessor directive is a message from compiler to a linker.
    • ক) True
    • খ) False
  • ১৫। A preprocessor directive is a message from programmer to the preprocessor.
    • ক) True
    • খ) False
  • ১৬। A short integer is at least 16 bits wide and a long integer is at least 32 bits wide.
    • ক) True
    • খ) False
  • ১৭। A structure can be nested inside another structure.
    • ক) True
    • খ) False
  • ১৮। A structure can contain similar or dissimilar elements
    • ক) True
    • খ) False
  • ১৯। A text stream is an ordered sequence of characters composed into lines, each line consisting of zero or more characters plus a terminating new-line character.
    • ক) True
    • খ) False