Multiple choice technology programming languages

C++ does not support string type.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

In standard C++ (before std::string), there is no built-in string type - strings are implemented as char arrays or pointers. The std::string class is a library implementation, not a primitive language type. Modern C++ has string in the standard library, but it's still not a fundamental type like int or char.