CBSE Class 12 Computer Science
Question 28 of 30
Exception Handling — Question 3
Back to all questionsTrue
Reason — Exceptions are caught using the try block because it encapsulates code that might raise exceptions. If any code within the try block causes an error or exception, the program will transfer control to the corresponding except block to handle the exceptional situation.