Multiple choice technology programming languages

Which of the following language is not supported by C++?

  1. Exception Handling

  2. Reflection

  3. Operator Overloading

  4. Namespaces

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

C++ does not support reflection natively. Exception handling is supported via try-catch blocks, operator overloading is a core feature allowing operators to be redefined for user-defined types, and namespaces are supported to organize code. Reflection would require runtime type information that isn't part of standard C++.