explain System.out.println
Answer Posted / shyam
It is quite simple to understand the question but to answer it we need to dig deeper in to java native code.
System is static class and cannot be instantiated
out is a reference variable defined in System
println() is the method used to print on standard output.
A <a href = "http://www.javastudychannel.com/forum/2114-What-out-System.out.println-Java.aspx">brief and nice explanation</a> is always welcome on this as we can learn much from this single line of statement itself!!
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What if the main() method is declared as private? What happens when the static modifier is removed from the signature of the main() method?
What are the procedures?
Explain the usage of this with constructors?
State the difference between creating string as new () and literal.
What is canonical name in java?
Can we sort a map in java?
Can an interface be final?
How do you sort arraylist in descending order?
Discuss 2D arrays.
What are the two environment variables that must be set in order to run any java programs?
What does a boolean method return?
How many types of constructors are used in java?
What is hasnext in java?
What all access modifiers are allowed for top class ?
What is comparator in java?