package start9_1; // What does the program print? // e1 h1 h2 h: Infinity h3 h4 e2 // e1 h1 h2 h: ∞ h3 h4 e2 // e1 h1 h2 h3 h4 e2 // e1 h1 h2 public class FinallyExample { public static void main(String[] args) { new FinallyExample().example(); } private void example() { System.out.print("e1 "); // Abbreviation for "example" helper(); System.out.print("e2 "); } private void helper(){ System.out.print("h1 "); // Abbreviation for "helper" System.out.print("h2 "); System.out.print("h: " +(5/0)+ " "); System.out.print("h3 "); System.out.print("h4 "); } }