🎴 Flashcard Mode

Java Programming Fundamentals Quiz

Card1 / 19
Mastered0
Review0
QuestionClick to flip

Can we have try block with out catch?

AnswerClick to flip back
A
True
💡 Explanation:

In Java, a try block can exist without catch if it has a finally block. This pattern is useful for resource cleanup or code that must execute regardless of exceptions.

Change Mode