explain System.out.println
Answer Posted / malyadri tavva
System:System is predefined class in java.lang package.
out: out is final and static variable in system class and
it is a referece variable in PrintStream class.
we call the static varible with their class names.i.e
System.out
println():
println() is a method in PrintStream class so we can call
this method by using the reference variable i.e
System.out.println().
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are peerless components?
What is complexity and its types?
What is the major drawback of internal iteration over external iteration?
How big is a 32 bit integer?
Are arrays classes in java?
Which is bigger float or double java?
Is stringwriter thread safe?
What is oop principle in java?
Is arraylist ordered?
what is a thread pool in java and why is it used?
List primitive java types?
What languages are pass by reference?
Why declare Main() method as a static in java ?
Explain about data types?
What is functional interface in java example?