Java: try catch finally Question What belongs in a `finally` block? (Click to reveal answer) Answer Cleanup that must happen whether the operation succeeds or fails. `finally` is best for releasing resources or recording unavoidable cleanup work. It should not become a hiding place for surprise business logic that changes outcomes silently. Additional NotesWhat belongs in a `finally` block? Track: Java Topic: Exceptions Focus: try catch finally Topics: Exceptions Java try catch finally