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 / siva

System is a final class.
Out is a object to the printstream.
println is the method.

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / parth brahmbhatt

System is java class in java.lang package.
Out is static object of printstream class in java.io package.
println is the method of printstream class.

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / jaith eranga

System : Is the namespace.(not the package)
out : A class in the System namespace.
println : A method in the out class

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / deepak joshi

System is a class in java.lang package which imports java.io
package.....
out is a object(reference) of OutputStream class passed to
constructor of PrintStream class and println is a method in
PrintStream class.

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / rahul yadav

System.out.println( );

1.The System class contains several useful class fields and
methods. It cannot be instantiated.
2.System class has field out of type PrintStream class.
3.println() is a method in PrintStream class.
public static final PrintStream out
The "standard" output stream. This stream is already open
and ready to accept output data. Typically this stream
corresponds to display output or another output destination
specified by the host environment or user.

For simple stand-alone Java applications, a typical way to
write a line of output data is:
System.out.println(data)

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / vineet ahlawat

System is a class of java.lang package.
Out is a reference object in print stream class of java .io
package.
ptintln is a method in printstream class.

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / ishant agarwal

System is a final class where it define an class variable out of PrintStream class which is an static
and we can refer a class variable out with System class and println is a method define in PrintStream class

then

while loading an System class it creates an object of PrintStream class

that's why we write it in a way System.out.println();

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / manoj

1. System: It is a class present in java.lang package.

2.out:It is a static field present in system class ,as it is
a static field thats why it can access with class name.which
returns a printstream object.

3.Println: It is method in PrintStrean class which is print
a line and also create a new line.

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / gaurav

Here println() is a non static function belonging to object
'out', 'out' is the object of PrintStream class define as
static variable of class 'System'.

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / himanshu

//a program to understand how System.out.println works

class Temp{//here "class Temp{"=>"class System{"
static Demo d;//here "static Demo d"=>"static PrintStream out"
static{
d=new Demo();//here "d=new Demo()"=>"out=new PrintStream()"
}
}


class Demo{//here "class Demo{"=>"class PrintStream{"
void show(){//here "show(){"=>"println(){"
System.out.println("Hello");
}
}


class Xyz{
public static void main(String a[]){
Temp.d.show();
}
}

/*-------------------
OUTPUT
---------------------
Hello


*/

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

What are the 8 primitive data types in java?

0 Answers  


What is static data type in java?

0 Answers  


How to solve the problem of generating the unique hash keys with hash function?

0 Answers  


when everything can be done by static block then why do we use main method?.

2 Answers  


In the HashMap, we know the values but we dont know the key, then how can we get the key from HashMap ?????

4 Answers   Kanbay,


Explain how to convert any java object into byte array.

0 Answers  


What is singleton class in ruby?

0 Answers  


How to perform linear search in java?

0 Answers  


Is void a return type?

0 Answers  


What are the restriction imposed on a static method or a static block of code?

0 Answers  


How is Garbage collection done in Java?

3 Answers   T3 Softwares,


What are the types of classes in java?

4 Answers   HCL,


Categories