Problem Statement
Which construct is used to handle exceptions in languages like Java and C#?
Explanation
In Java and C#, developers wrap code that might throw an exception in a try block, and then catch specific exceptions in catch blocks. This structure ensures that exceptional conditions are caught and managed rather than causing program termination.