In PHP, the error control operator is ________.
C
Correct answer
Explanation
The @ symbol in PHP is the error control operator - when prepended to an expression, it suppresses error messages for that expression. This allows you to handle errors gracefully in your code. However, it's generally recommended to use proper error handling instead of suppressing errors.