1. What block is used to handle exceptions in PHP?
PHP handles exceptions using try-catch blocks. Code that might fail goes in try, and the catch block handles the thrown exception.
try { throw new Exception('Error'); } catch(Exception $e) { echo $e->getMessage(); }