/* TestException10.java CIS 260 Dave Klick 2016-02-03 What will this program display? Why? */ public class TestException10 { public static void main(String[] args) { System.out.println(sub()); } private static int sub() { int n = 13; try { n = 42; return n; } finally { n = 666; System.out.println("In the finally code"); } } }