explain System.out.println
Answer Posted / ved
system is a static class that is having it's member out.
out is the object of printwriter class.
and println is the method of printwriter class.
that's why we access the member of system class out by it's
name because it is static. and by out we access it's method
prinln .
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is array length?
Why does abstract class have constructor?
Is void a return type?
When will you define a method as static?
What is the difference between post and put?
What is array size in java?
What does nullpointerexception mean?
What does string intern() method do?
What do you mean by Function Overloading in java?
If an object reference is set to null, will the garbage collector immediately free the memory held by that object?
What is arraylist e in java?
What are the new features in java 8?
What is the method in java?
Name few "optional" classes introduced with java 8 ?
What is the use of 'super' keyword inside a constructor?