What will the following code display? String input = “99#7”;…
What will the following code display? String input = “99#7”; int number; try { number = Integer.parseInt(input); //Converts string to integer } catch(NumberFormatException ex) { number = 0; } catch(RuntimeException ex) { number = 1; } catch(Exception ex) { number = -1; } System.out.println(number);