explain System.out.println
Answer Posted / arun rajesh
System.out.println
The println() is a method that is used to print data on the
system console (command window). Java's method names are
always followed by parentheses.
System and out are not methods, but names that represent
other Java classes.
System.out means that the variable out is defined inside
the class System.
The out.println() tells us that there is an object
represented by a variable called out and it has a method
called println().
| Is This Answer Correct ? | 36 Yes | 136 No |
Post New Answer View All Answers
What does singleton mean in java?
What is natural ordering in java?
Describe the syntax of multiple inheritance? When do we use such an inheritance?
How do you replace all in word?
Which collection is sorted in java?
What is locale in java?
How to create a custom exception?
What is a pointer and does java support pointers?
What is the purpose of a parameter?
What is meant by object oriented programming – oop?
What state does a thread enter when it terminates its processing in java programming?
What is Enum in Java?
Is upper case in java?
What is the difference between variable & constant?
What are streams in java 8?