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 the finalize method do?
What is use of functional interface in java 8? Explain
What do you mean by object?
What is the function of character?
Give example to differentiate between call by value and call by reference.
What is a method vs function?
What are structs in java?
What methodology can be employed to locate substrings inside a string?
What is valid keyword in java?
What are the differences between abstract class and interface?
Can one thread block the other thread?
What is the difference between class & object?
Is arraylist ordered in java?
What is a get method?
What is the difference between a constructor and a method?