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
How do you do descending order in java?
what is comparable and comparator interface?
What 5 doubled?
What are inner classes or non static nested classes in java?
How many ways can we create the string object?
What is the equal sign?
What is the importance of main method in Java?
What do you mean by inner class in java?
What are the important features of Java 9 release?
Explain the protected field modifier?
State the difference between creating string as new () and literal.
Is string a data type in java?
Why do we override tostring method in java?
Are there structures in java?
What is multi level inheritance in java?