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

Answer Posted / ramu.gadde

System is the class name which is Available in
java.lang.System class

out is a static variable which is also available in
java.lang.System class

println is the method which is available in
java.io.PrintStream class

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Draw a UML class diagram for the code fragment given below: public class StringApplet extends Applet { private Label sampleString; private Button showTheString; private ButtonHandler bHandler; private FlowLayout layout; public StringApplet() { sampleString = new Label(" "); showTheString = new Button (" Show the String"); bHandler = new ButtonHandler(); layout = new FlowLayout(); showTheString.addActionListener(bHandler); setLayout(layout); add(sampleString); add(showTheString); } class ButtonHandler implements ActionListener { public void actionPerformed(ActionEvent e) { samplestring.setText("Good Morning"); } } } Note: The methods need not be indicated on the diagram.

2099


Can we overload run() method in java?

1265


Describe the process as to how substring() methodology mechanisms in java.

1203


What is the difference between pass by reference and pass by pointer?

1176


What do you mean by constant time complexity?

1339


If you are given the name of the function at run time how will you invoke the function?

1188


Can interface be private in java?

1068


What is update method called?

1205


Why is core java important?

1088


Why does abstract class have constructor?

1065


how many types of Inheritance?

1214


What is the use of arraylist class in java?

1128


What is exception in java?

1162


What does flag mean in java?

1088


What is exception propagation?

1189