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
Can we assign the reference to this variable?
Is assembly language a low level language?
What does || mean in vectors?
Can we create constructor in abstract class ?
What do you mean by data type?
How will you communicate between two applets?
What are class types in java?
How do you format in java?
What is a local, member and a class variable?
What is externalizable?
How can you add and remove nodes in jtree?
What are the types of arrays in java?
Is 9 a prime number?
How will you print number in reverse (descending) order in BST.
What if the main() method is declared as private? What happens when the static modifier is removed from the signature of the main() method?