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 a dynamic array in java?

0 Answers  


What is static binding and where it occurs?

4 Answers  


What are the default and parameterized constructors?

0 Answers  


Why should we use singleton pattern instead of static class?

0 Answers  


jdbc drivers?

8 Answers   Wipro,


What is substring in java?

0 Answers  


what is the output??????? public class multireturn { public(int assign x ( int x) { if(4==x) { return 7; } else if (7=x+3) { return 6; } return 5; } }

3 Answers   TCS,


Why is the main method static in Java?

1 Answers  


What is a line separator in java?

0 Answers  


Can inner class final?

0 Answers  


How can we achieve IPC in JAVA?

1 Answers   Wipro,


What is passing by reference in java?

0 Answers  


Categories