Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


explain System.out.println

Answers were Sorted based on User's Feedback



explain System.out.println..

Answer / santhosh

System : It is a BuiltIn class
Out : it refers to the output device
println : It is a method of System class , a method which
helps in printing the contents in the paranthesis to the
output(console) device generally monitor.

Is This Answer Correct ?    13 Yes 45 No

explain System.out.println..

Answer / shakti prasad rath

System ->it is a final class present in java.lang package
that can be inherited.

out -> it is a inner class object.

println() -> it is a method in printstream class

Is This Answer Correct ?    9 Yes 44 No

explain System.out.println..

Answer / arun rajesh

System.out.println

The println() is a method that is used to print data on the
system console (command window). Java's method names are
always followed by parentheses.

System and out are not methods, but names that represent
other Java classes.

System.out means that the variable out is defined inside
the class System.

The out.println() tells us that there is an object
represented by a variable called out and it has a method
called println().

Is This Answer Correct ?    36 Yes 136 No

explain System.out.println..

Answer / nisha sharma

System-it is class
out-object/datamember or u can say referencevariable of
class
println-method of class

Is This Answer Correct ?    24 Yes 125 No

explain System.out.println..

Answer / vinay tiwari

System: System is a Package
out: out is a class belonging to System Package
println(): println() is a method of out class

Is This Answer Correct ?    54 Yes 453 No

explain System.out.println..

Answer / venkatearamireddy

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

Is This Answer Correct ?    118 Yes 544 No

explain System.out.println..

Answer / vinay tiwari

System: System is a Package
out: out is a class belonging to System Package
println(): println() is a method of out class

Is This Answer Correct ?    80 Yes 531 No

Post New Answer

More Core Java Interview Questions

In a container there are 5 components. I want to display all the component names, how will you do that?

0 Answers  


What does \ mean in regex?

0 Answers  


What is the disadvantage of java?

0 Answers  


What are adapter classes?

0 Answers  


Difference between prefix and postfix forms of the ++operator?

3 Answers  


Where and how can you use a private constructor?

0 Answers  


what is collections in java?

4 Answers  


How to stop a thread in java? Explain about sleep () method in a thread?

0 Answers  


When should you use arraylist and when should you use linkedlist?

0 Answers  


If an object is garbage collected, can it become reachable again?

0 Answers  


What is the latest version of java?

0 Answers  


What are the two types of streams offered by java 8?

0 Answers  


Categories