explain System.out.println

Answers were Sorted based on User's Feedback



explain System.out.println..

Answer / vishal

System :
Its a built-in class present in java.lang package.
This class has a final modifier, which means that, it cannot
be inherited by other classes.
It contains pre-defined methods and fields, which provides
facilities like standard input, output, etc.

out :
Its a static final field (ie, variable)in System class
which is of the type PrintStream (a built-in class, contains
methods to print the different data values).
static fields and methods must be accessed by using the
class name, so ( System.out ).

out here denotes the reference variable of the type
PrintStream class.

println() is a public method in PrintStream class to print
the data values.
Hence to access a method in PrintStream class, we use
out.println() (as non static methods and fields can only be
accessed by using the refrence varialble)

System.out.println();

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / chandan

system is a class
out ia an object of printwriter class
println is a method of printwriter class

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / pragya

System:It is a class in lang package and
out:it is static member of System class and object of PrintStream class........
println():this is the method defined in PrintStream class
which prints the sentence in new line

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / mayur gajera

'System' is a class in java.lang package
'out' is a static object of PrintStream class in java.io
package
'prinln()' is method in the PrintStream class

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / praveen

System is a final class in java.lang package
out is a public static final refrence of PrintStram
in System
print() and println()are the methods in PrintStream

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / raju kumar (bca)

ex:-class System
{
static printstream out= new printstream();
static Inputstream in= new Inputstream();
}
conclusion:=>
"system" is a class&packege(java.lang).
"out" is a static object of printstream class (java.io).
and "println()"is a method of out calss.

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / vivek ingle

System is a class in System class their is a declaration of
out Static data member Just Like (public static final
PrintStream out).

Out is Static Data Member.

Println is a method in PrintStaream class.

Public Class System{
public static final PrintStream out;
}

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / swati vora

system is a class.
out is a object.
println() is a method

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / rajendra chandra

System:-it is class present in the java.lang package
out:-it is the static variable of PrintStream class defined inside system class
println():- is a method of PrintStream Classand this class having some method which are declared pubic void type

Is This Answer Correct ?    0 Yes 0 No

explain System.out.println..

Answer / k.venu

System is a built-in class present in java.lang package.
This class has a final modifier, which means that it cannot
be inherited by other classes.
It contains pre-defined methods and fields, which provides
facilities like standard input, output, etc.

out is a static final field (ie, variable)in System class
which is of the type PrintStream (a built-in class,
contains methods to print the different data values).
static fields and methods must be accessed by using the
class name, so ( System.out ).

out here denotes the reference variable of the type
PrintStream class.

println() is a public method in PrintStream class to print
the data values.
Hence to access a method in PrintStream class, we use
out.println() (as non static methods and fields can only be
accessed by using the refrence varialble)

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

What is parameters example?

0 Answers  


What is java util collection?

0 Answers  


What access modifiers can be used for variables?

0 Answers  


What is casting?

5 Answers  


What is the importance in context in JDBC connection pools?

2 Answers   iFlex,






What is an i/o filter?

0 Answers  


What is mean by UML? what is the use? where we are using?

1 Answers   Eka Software,


Why is a string immutable?

0 Answers  


What is run-time class and system class? what is their purpose?

1 Answers  


What is the base class of all exception classes?

0 Answers  


Can we override static methods?

18 Answers   Bally Technologies,


wat is class level lock and object level lock

3 Answers   HCL, Persistent,


Categories