explain System.out.println
Answer Posted / jacob.p.george
'system' is a public class which is final which can never
be extended..It itself extends object.
'out' is the static object of the class PrintStream.
'println()' is the method of printStream class..
since 'out' is a static object it can be called by using
the class name'system'
so 'Sstem.out.println()'
| Is This Answer Correct ? | 362 Yes | 45 No |
Post New Answer View All Answers
Explain about fail fast iterators in java?
Which package is imported by default?
What does \ mean in regex?
What is Gang of four design patterns
Explain heap sort?
Define a package.
Which collection is thread safe in java?
Considering notepad/ie or any other thing as process, what will happen if you start notepad or ie 3 times? Where 3 processes are started or 3 threads are started?
What is keyset in java?
How do you clear a list in java?
Is hashmap thread safe?
What is the advantage of preparedstatement over statement?
Is a boolean 1 bit?
Why is string class considered immutable?
why using interface interface ?