explain System.out.println
Answer Posted / bindu madhavi
System is final class of java.lang package.
'out' is field of System class which is static of
type 'PrintStream'.
println() is overloaded method of PrintStream.
| Is This Answer Correct ? | 9 Yes | 17 No |
Post New Answer View All Answers
What is constructor and its types?
Can an interface have a constructor?
What is "this" keyword in java? Explain
What is meant by class?
What is difference between static class and normal class?
What are the changes in java.io in java 8 ?
Can you change array size in java?
Why synchronization is important in java?
Can a static class have a constructor?
Can we compare two strings in java?
Can we create an object of private class?
Can we call the constructor of a class more than once for an object?
What is t in generics in java?
how come we know the object is no more used in the class?
Write a java program that prints all the values given at command-line.