Q. Which error type is not caught by a try-catch block in PHP?
β
Correct Answer: (A)
Parse error
Explanation: Parse errors are compile-time errors and cannot be caught by try-catch.