Question: Consider the following code segment. System.out.print(One); // Line 1 System.out.print(Two); // Line 2 System.out.print(Three); // Line 3 System.out.print(Four); // Line 4 The code segment is
Consider the following code segment.
System.out.print("One"); // Line 1
System.out.print("Two"); // Line 2
System.out.print("Three"); // Line 3
System.out.print("Four"); // Line 4
The code segment is intended to produce the following output, but does not work as intended.
OneTwo
ThreeFour
Which of the following changes can be made so that the code segment produces the intended output?
(A) Changing print to println in line 1 only
(B) Changing print to println in line 2 only
(C) Changing print to println in line 3 only
(D) Changing print to println in lines 2 and 3 only
(E) Changing print to println in lines 1, 2, 3, and 4
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
