String s = "BIRD"; try { String x = "DOG"; throw new Exception(); } catch (Exception e) { s = "CAT"; } finally { s = "GOAT"; x = "FROG"; } System.out.println(s);
Login in to like
Login in to comment
or Read more about Java Quizzes
Login in to like
Login in to comment