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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!