Question: Which Java statement produces w on one line and xyz on the next line? a. System.out.println(wxyz); b. System.out.println(w + xyz); c. System.out.println(w xyz); d. System.out.println(w
Which Java statement produces w on one line and xyz on the next line?
a. System.out.println(“wxyz”);
b. System.out.println(“w” + “xyz”);
c. System.out.println(“w\nxyz”);
d. System.out.println(“w\nx\ny\nz”);
Step by Step Solution
3.54 Rating (164 Votes )
There are 3 Steps involved in it
c Sy... View full answer
Get step-by-step solutions from verified subject matter experts
