Code /* TestException9.java CIS 260 Dave Klick 2016-02-03 What will this program display? Why? */ public class TestException9 { public static void main(String[] args) { System.out.println(sub()); } private static int sub() { try { return 0; } finally { return 1; } } }