Java MCQ Set 1 1. Which of these clause will be executed even if no exceptions are found? a) throws b) finally c) throw d) catch AnswerAnswer: b [Reason:] finally keyword is used to define a set of instructions that will be executed irrespective of the exception found or not. 2. A single try block…