define System.out.println(); what is the meaning!
Answer Posted / amit j bhavsar
in java system is predefine class that provides access to
the system.
in java out means,out is the output stream that is
connected to the console.
in java println is a one method which is print the statment.
| Is This Answer Correct ? | 17 Yes | 6 No |
Post New Answer View All Answers
Can I extend singleton class in java?
What are the methods of object class ?
How do you compare objects in java?
How to sort array of 0 and 1 in java?
Can a class have multiple subclasses?
Explain about arraylist?
How to store image in arraylist in java?
What is the use of isempty in java?
What is scope & storage allocation of global and extern variables? Explain with an example
What are synchronized blocks in java?
4.1 Supply contracts (in the form of comments specifying pre- and post conditions) for the enqueue() method of the LinkedQueue class given in the Appendix. (2) 4.2 Let Thing be a class which is capable of cloning objects, and consider the code fragment: Thing thing1 = new Thing(); //(1) Thing thing2 = thing1; //(2) Thing thing3 = (Thing) thing1.clone(); //(3) Explain how the objects thing2 and thing3 differ from each other after execution of the statements. (
What are the six ways to use this keyword?
What does n mean in java?
What is a "pure virtual" member function?
Given a singly linked list, find the middle of the list in a single traversal without using temporary variable.