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
What is the difference between array list and vector in java?
What happens when I use / and % with a negative numerator?
Can we serialize singleton class?
Is there any sort function in java?
What are the advantages of exception handling in java?
What checkbox method allows you to tell if a checkbox is checked?
can java object be locked down for exclusive use by a given thread? : Java thread
What is ‘is-a ‘ relationship in java?
Differentiate storage classes on the basis of their scope?
What is string immutability?
What is class??
Are primitives objects?
Why we use multi threading instead of multiprocessing?
Can You Have Virtual Functions In Java?
Why singleton pattern is better than creating singleton class with static instance?