define System.out.println(); what is the meaning!
Answer Posted / sagar g
System : The System is a class and cannot be instantiated.
out : Its a static field with type PrintStream of System
class and object of PrintStream class.
println : Its a method of PrintStream class.
As "println()" is a method of PrintStream class and "out"
is an object of PrintStream class, object can call its
public method "println()"
out.println();
Since "out" is static , it so that it is called using class
name "System"
System.out.println()
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are data types in programming?
What is mutable object and immutable object?
What is the function of static in java?
What is a priority queue java?
What is array list in java?
What is the finalize method do?
What is the difference between access specifiers and access modifiers in java?
What is the range of a character variable?
What is polymorphism in java? What are the kinds of polymorphism?
What is abstract class? Explain
What is the difference between class & object?
What Is Composition?
What does business logic mean?
what is the purpose of using rmisecuritymanager in rmi?
What is square root in java?