In the statement ‘System.out.println("Hello World!")’, the keyword ‘out’…
2024
In the statement ‘System.out.println("Hello World!")’, the keyword ‘out’ stands for the following –
- A.
Static member of the ‘System’ class
- B.
An interface in the Java standard library
- C.
A method in the ‘System’ class
- D.
Class in the Java standard library
- E.
Question not attempted
Attempted by 75 students.
Show answer & explanation
Correct answer: A
In System.out.println, out is a public static member field of the System class that refers to the standard output stream.