explain System.out.println
Answer Posted / nivrutti
'system' is a public class which is final which can never
be extended..It does not extends object.
'out' is the static variable of the class PrintStream desclared in system class.
'println()' is the method of printStream class..
since 'out' is a static variable it can be called by using
the class name'system'
so 'Sstem.out.println()'
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what is nested class in java?
What is Garbage Collection in Java
Which programming language is best in future?
how we can use debug in myeclipse 6.0 in order solve the problems that exist in our program when there are 900 to 1000 pages in a web application
When arithmeticexception is thrown?
What are the advantages of exception handling?
What are the main uses of the super keyword?
What java ide should I use?
Why isn’t there operator overloading?
What is super keyword explain with example?
Explain hashset and its features?
What is a variable analysis?
How does predicate work in java?
State some situations where exceptions may arise in java?
What is the purpose of the wait(), notify(), and notifyall() methods in java programming?