explain System.out.println
Answer Posted / durgesh jaiswal
System:- is a predefined class that provide access to the
system from anywhere in the program
Out:- is the outputstream that is connected to the console
print():- Display the string and any result passed to it
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
When should you make a function static?
Explain the private field modifier?
Write a program to print 15 random numbers using foreach of java 8?
Explain method overloading?
How does compareto work in java?
Why method overriding is used?
How can you write a loop indefinitely in java programming?
What is scope & storage allocation of static, local and register variables? Explain with an example.
Why parameters should be passed by reference?
How do you escape sequences in java?
How is it possible in java programming for two string objects with identical values not to be equal under the == operator?
For class CFoo { }; what default methods will the compiler generate for you>?
What happens when you add a double value to a string?
What is the class in java?
can java object be locked down for exclusive use by a given thread? Or what happens when a thread cannot acquire a lock on an object? : Java thread