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

Answer Posted / malyadri tavva

System:System is predefined class in java.lang package.
out: out is final and static variable in system class and
it is a referece variable in PrintStream class.

we call the static varible with their class names.i.e
System.out
println():

println() is a method in PrintStream class so we can call
this method by using the reference variable i.e
System.out.println().

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What modifiers may be used with a top-level class?

1107


How many bytes is a string?

1173


What is the private method modifier?

1136


Why does java not allow multiple public classes in a java file ?

4648


List out benefits of object oriented programming language?

941


What are the three parts of a lambda expression?

1061


What is difference between iterator access and index access?

1108


What is return used for in java?

1063


What are different ways of object creation in java ?

1150


What is the method to declare member of a class static?

1050


What is static and final keyword in java?

1071


What is the difference between array and array list in java?

1296


When a lot of changes are required in data, which one should be a preference to be used? String or stringbuffer?

1289


What is the difference between abstract class and interface1? What is an interface?

1128


I want to control database connections in my program and want that only one thread should be able to make database connection at a time. How can I implement this logic?

1141