Question: Given the code fragment 3. public static void main (String args) ( int x = 5; while (isAvailable (x)) 5 6 system.out.print (x) 7 9

Given the code fragment 3. public static void main (String args) ( int x = 5; while (isAvailable (x)) 5 6 system.out.print (x) 7 9 10. 11. public static boolean isAvailable (int x) t 12. 13.) return - true false; Which modification enables the code to print 54321? A Replace line 6 with System, out print (-x) B. At line 7, insert x- C. Replace line 6 with -x, and, at line 7, insert system, out. print (x); D. Replace line 12 With return (x > 0)? false: true
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
