Home » C++ Programming » Data Types » Question
  1. Which of the following statements are false?
    1. bool cannot be used as the type of the result of the function
    2. bool can have two values and can be used to express logical expressions
    3. a bool value can be used in arithmetic expressions
    4. bool can be converted into integers implicitly
    5. None of these
Correct Option: A

* Booleans(bool) can have two values and can be used to express logical expressions.
* A Booleans(bool) value can be used in arithmetic expressions.
* Booleans(bool) can be converted into integers implicitly.



Your comments will be displayed only after manual approval.