define System.out.println(); what is the meaning!
Answer Posted / alok
System is a class defined in java.lang package(public final
class System extends Object) that provides useful methods
and class fields(out,in,err)for input and output.
out is print stream object.it is static, so can be called
by its class name(System.out)
println() is a print stream method that is already
overloaded for each and every thing.it directs the output
to console
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What is entry in java?
Can a class declared as private be accessed outside it’s package?
How do you use compareto?
Is space a character in java?
why we use merge option in hybernate pls give a ex snippet
What is tcp ip in java?
Which is the best approach for creating thread ?
How to split a string in java?
How much is a java license?
What is OOP Language?
What is the purpose of void?
If a method is declared as protected, where may the method be accessed?
Explain exception chaining in java?
What are the advantages of packages in java?
What does n mean?