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
a thread is runnable, how does that work? : Java thread
Which of the classes will have more memory allocated?
How do you declare an array in java?
What will be the default values of all the elements of an array defined as an instance variable?
What is indexof in java?
Can a method be static?
What is a parameter used for?
How to sort a collection of custom Objects in Java?
Which package is used for pattern matching with regular expressions?
What is null statement?
take an array with -ve and +ve value both.find out the nearest value of 0(zero).if two values are same like(-2 and +2)then extract +2 is nearest of 0(zero).
What is difference between final and finally in java?
What is the numeric promotion?
What does java stand for?
In which order the iterator iterates over collection?