when System.out.println("") is executed what happens in the
back ground?
Answers were Sorted based on User's Feedback
Answer / qim2010
'System' is a class in 'java.lang' package, which is a final
class(can not be inherited) and its constructor is
private(can not be inherited)
'out' is a static member variable of 'System' class which is
of type 'PrintStream'
'println()' is a method of 'PrintStream' class So
'System.out.println()' means calling of method 'println()'of
the static 'PrintStream' type variable 'out' of 'System' class.
And is used to print a String to the system console.
| Is This Answer Correct ? | 2 Yes | 1 No |
How does a for loop work java?
What are advantages of using Java?s layout managers than windowing systems?
What is difference between hashset and hashmap?
Why string is called as immutable?
types of applets?.
What is qms certification?
What is hard code & soft code?
Explain about serializable interface in java?
What is size () in java?
What data structures are used to perform recursion?
0 Answers Akamai Technologies,
Why do we need data structure in java?
Distinguish method overloading and method overriding