define System.out.println(); what is the meaning!
Answer Posted / ilankumaran
System is a class
out is a predefined streaming object of the System class
and println() is a method which is used to print the output
on the screen
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Why is java multithreaded?
Why charat is used in java?
What is static and final keyword in java?
Does importing a package imports its sub-packages as well in java?
which one is more efficient int x; 1. if(x==null) 2.if(null==x) state which one either 1 or 2?
What is the purpose of checked and unchecked exceptions in JAVA?
What all methods are used to prevent thread execution ?
What is the importance of finally block in exception handling?
What is the exact difference in between unicast and multicast object? Where we will use?
What is singleton class and how can we make a class singleton?
What is lambda expression in java?
Which list is sorted in java?
Explain the transient field modifier?
What is the java virtual machine?
Can we restart a thread already started in java?