InterviewSolution
Saved Bookmarks
| 1. |
What System.out.println()? |
|
Answer» "PRINTLN()" is a method of PrintStream class. "out" is a STATIC OBJECT of PrintStream class DEFINED in "SYSTEM" class. System is a class from java.lang package used to interact with the underlying operating system by the programmer. "println()" is a method of PrintStream class. "out" is a static object of PrintStream class defined in "System" class. System is a class from java.lang package used to interact with the underlying operating system by the programmer. |
|