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 is a prefix function.write down a code to compute prefix function.
Which is better arraylist or vector?
Which collection is thread safe in java?
Why are there no global variables in java?
Can a class declared as private be accessed outside it’s package?
What are decalarations?
Is there a sort function in java?
Why we used vector class?
What is java objectoutputstream?
What is immutable data?
What is the purpose of abstract class?
Can we serialize singleton class?
Is java ee a framework?
What is the properties class in java programming?
What kind of variables can a class consist?