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...


when System.out.println("") is executed what happens in the
back ground?

Answers were Sorted based on User's Feedback



when System.out.println("") is executed what happens in the back ground?..

Answer / dsr

When ever System.out.println("") executing JVM doing like
that System is a class, out is object of PrintStream class,
println() is a method in PrintStream class.

Is This Answer Correct ?    11 Yes 0 No

when System.out.println("") is executed what happens in the back ground?..

Answer / qim2010

'System' is a class in 'java.lang' package, which is a final
class(can not be inherited) and its constructor is
private(can not be inherited)
'out' is a static member variable of 'System' class which is
of type 'PrintStream'
'println()' is a method of 'PrintStream' class So
'System.out.println()' means calling of method 'println()'of
the static 'PrintStream' type variable 'out' of 'System' class.
And is used to print a String to the system console.

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More Core Java Interview Questions

What is the protocol is used in type4 driver?

4 Answers   CMC,


How long will it take to learn java?

0 Answers  


What is the difference between and ?

0 Answers  


What are java packages? What's the significance of packages?

0 Answers  


Write a program to print fibonacci series

0 Answers  


what are the high-level thread states? : Java thread

0 Answers  


What are the differences between checked exception and unchecked exception?

0 Answers  


What is the use of runnable interface?

0 Answers  


What will be the output of the program? public class Test { public static void main(String args[]) { ArrayList<String> list = new ArrayList<String>(); list.add("2"); list.add("3"); list.add("4"); list.add("5"); System.out.println("size :"+list.size()); for(int i=0;i<list.size();i++) { list.remove(i); } System.out.println("size after:"+list.size()); } }

5 Answers   Rolta,


How to instantiate member inner class?

0 Answers  


What is the difference between a window and a frame in java programming?

0 Answers  


What a static class can contains?

0 Answers  


Categories