Computer Applications
Which of the following statements correctly prints the following output?
Hello
World
Answer
System.out.println("Hello\nWorld");
Reason — Let's analyze each of the options:
1. System.out.println("Hello/nWorld"); — Incorrect
\nis a special escape sequence, but/n(forward slash) is not. Output would be:Hello/nWorld
2. System.out.println("Hello\\nWorld"); — Incorrect
\\nprints as\nliterally (because\\is an escape character for\). Output would be:Hello\nWorld
3. System.out.println("Hello World"); — Incorrect
- Prints everything on a single line. Output would be:
Hello World
4. System.out.println("Hello World"); — Correct
- The
\n(newline escape sequence) moves the cursor to the next line. Output would be:
Hello
World
Related Questions
Read the following text and choose the correct answer:
BlueJ version is a menu driven approach for Java programming. It allows the users to carry out different tasks by clicking the options available on the menu bar.
Which is the most suitable statement for BlueJ from the following?
- It is a window based platform.
- It is a DOS based platform.
- It is a window based and DOS based platform.
- Every task is performed by typing the commands on the screen.
Assertion (A): In Java, when you declare a class, it displays a sample program for the user.
Reason (R): You cannot write a Java program without the use of a sample program.
Based on the above discussion, choose an appropriate statement from the options given below:
- Both Assertion (A) and Reason (R) are true and Reason (R) is a correct explanation of Assertion (A).
- Both Assertion (A) and Reason (R) are true and Reason (R) is not a correct explanation of Assertion(A).
- Assertion (A) is true and Reason (R) is false.
- Assertion (A) is false and Reason (R) is true.
What does the below illustration depict in Java?

- Name of a bird
- DOS based platform for Java programming
- Window based platform for Java programming
- A web browser to execute Java programs
"Java compiled code (byte code) can run on all operating systems"
— Name the feature.- Robust and Secure
- Object Oriented
- Platform Independent
- Multithreaded