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
Discuss about garbage collector in Java.
How do you declare an array in java?
What are annotations in java?
What is split return?
What is a parameter in a function?
What are data types in programming?
Is string is a keyword in java?
What is a memory leak in java?
What is the difference between member variables initialization and assignment in a constructor?
How to sort double array in java?
What is a native method in java programming?
What are exceptions
Is there any way to skip finally block of exception even if some exception occurs in the exception block?
what is synchronization? : Java thread
What are the different ways of creating thread?