explain System.out.println
Answer Posted / birendra
system-is a class present in java.lang package .it is a
public final class.
system class import the package java.io.*;
out-out is the object of printStream class.
its syntax is public final static PrintSteam out in the
system class.
println()-it the the method of PrintStream class;
so we can call the static object of system class with the
name of class & with the name of out we can call the method
of printsteam call
System.out.println();
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is string intern in java?
Can we override private methods?
What is the super void?
Is cout buffered?
Explain creating threads by extending thread class ?
What are classloaders?
What is the base class of all classes?
What is the advantage of OOP in java?
What is void class in java?
Why does the integer quotient -0/3 yield 0, but the double quotient -0.0/3.0 yields – 0.0?
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?
How do you take thread dump in java?
What is the difference between the boolean & operator and the && operator in java programming?
What is main function purpose?
What are scalar data types?