* CONTROL FLOW TRACE try { print A do stuff open file do more stuff print B } catch (NetworkException e) { print C } catch (FileNotFoundException e) { print D } catch (NotInTheMoodForClassAnymore e) { print E } print F 1) What's printed if no exception occurs? ABF 2) What's printed if a FileNotFoundException occurs on line 6 (the line where we open the file)? ADF * NOW SAME THING WITH FINALLY try { print A do stuff open file do more stuff print B } catch (NetworkException e) { print C } catch (FileNotFoundException e) { print D } catch (NotInTheMoodForClassAnymore e) { print E } finally { /* put stuff in here that you want to be completed whether an exception occurs or not */ print G } print F 1) What's printed if no exception occurs? ABGF 2) What's printed if a FileNotFoundException occurs on line 6 (the line where we open the file)? ACGF