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 do you mean by platform independence? What is an interface?
What are unchecked exceptions in java?
What are new features introduced with java 8 ?
What mechanism does java use for memory management?
What are encapsulation, inheritance and polymorphism?
Define Multiprogramming and Multiprocessing in java.
Which collection is sorted in java?
what is the messsage u r going to get from an objectoriented programing?
What happens when I use / and % with a negative numerator?
When is the arraystoreexception thrown?
Java is Pass by Value or Pass by Reference?
What are the fileinputstream and fileoutputstream?
What do you mean by inner class in java? Explain
What is arguments in java?
Does java have extension methods?