define System.out.println(); what is the meaning!
Answer Posted / muffy
System: System refers to current java program.
out: out refers to output device. by default it is monitor.
println: to print the specific string onto output device in
next line
System: its the class
out: its the object of the class System
println():its the method which tells the compiler to print
a new line.
| Is This Answer Correct ? | 128 Yes | 91 No |
Post New Answer View All Answers
What is main difference between variable and constant?
Why destructor is not used in java?
What is generics in java interview questions?
How can you read an integer value from the keyword when the application is runtime in java? example?
what is enumset?
1.IN CASE OF DYNAMIC METHOD DISPATCH WHY WE USE REFERENCE VARIABLE,WE CAN USE THE DIFFERENT DEFINED OBJECT DIRECTLY TO ACCESS THE DATA MEMBER AND MEMBER FUNCTION OF THAT RESPECTIVE CLASS?WHAT IS THE MAIN FUNCTION OF "REFERENCE VARIABLE" HERE?
How do you implement polymorphism in our day to day life?
Where is const variable stored?
Is char a data type in java?
What is e java?
Is a copy constructor?
What is the benefit of inner / nested classes ?
What does null mean in java?
What’s a deadlock?
What is the difference between final, finally and finalize() in java?