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. |
|