define System.out.println(); what is the meaning!
Answer Posted / mayur
System is a class which is present inside the package
java.lang ,which is imported by default. System class
provides access to system,It contains 3 predefined stream
variable in,out and err.
System.out refers to the standard output stream. By default
this is console.
println() stands for printline,used to produce output of the
data on screen.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Break statement can be used as labels in java?
How can you generate random numbers in java?
What will happen if non-synchronized method calls a static synchronized method and what kind of lock it acquires?
Why is stringbuffer faster than string?
Can we initialize the final blank variable?
Does java set allow duplicates?
What is the meaning of find and replace?
What is the synchronized method modifier?
Can a list be null in java?
When is the finalize() called?
What is a vararg?
java program with complete 4 oops concepts implemented example
what are the methods in object?
what is singleton class in java?
Why can't we make a class private in java?