InterviewSolution
Saved Bookmarks
| 1. |
In System.out.println(), What Is System, Out And Println? |
|
Answer» System is a predefined final CLASS, out is a PrintStream object and PRINTLN is a built-in OVERLOADED METHOD in the out object. System is a predefined final class, out is a PrintStream object and println is a built-in overloaded method in the out object. |
|