explain System.out.println
Answer Posted / vipul patil
System is public class...& out is static object So class
System can invoke it directly...out is a static object of
PrintStream.class ,& println() is method of PrintStream.class
so "System.out.print(" hello");"
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is void a type?
Does java allow overriding static methods ?
Can you declare an interface method static?
What is <> used for in java?
What is the method to declare member of a class static?
What is time complexity java?
How is it possible for two string objects with identical values not to be equal under the == operator?
Explain what pure virtual function is?
Is it possible to compare various strings with the help of == operator?
What is stack explain?
When is the finalize() called? What is the purpose of finalization?
Is void a return type?
What is the definition of tree ?
What is the diffrence between inner class and nested class?
How do you declare an array in java?