Given:
Given the code fragment:
Which two sets of actions, independently, enable the code fragment to print Fit?
Given the code fragments:
Which modification enables the code to compile?
Given the code fragment:
System.out.println(2 + 4 * 9 - 3); //Line 21 System.out.println((2 + 4) * 9 - 3); // Line 22 System.out.println(2 + (4 * 9) - 3); // Line 23 System.out.println(2 + 4 * (9 - 3)); // Line 24 System.out.println((2 + 4 * 9) - 3); // Line 25
Which line of codes prints the highest number?