Question: When the following code executes, what will be displayed? public class Test { public static void main (String[]args) { String mystring=5; String yourstring=five; int number;
When the following code executes, what will be displayed?
public class Test { public static void main (String[]args) { String mystring="5"; String yourstring="five"; int number; try } number = integer.parseint(mystring); System.out.print(number+""); number = integer.parseint(mystring); system.out.print(number); } catch(NumberFormatException e) { System.out.print("not a number"); } finally { System.out.print("final"); } }
A) not a number
B) Not a number final
C) 5 final
D) five 5 not a number final
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
