Which of the following language is not supported by C++?
-
Exception Handling
-
Reflection
-
Operator Overloading
-
Namespaces
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++.