What is the return type of a program?s main() method?
Answer Posted / ravikiran
void
| Is This Answer Correct ? | 14 Yes | 0 No |
Post New Answer View All Answers
What is nested top-level class?
Explain why wait(), notify() and notifyall() methods are in object class rather than in the reading class?
What are different types of inner classes ?
How do you check if a character in a string is a digit or letter?
what is object slice?
How is hashcode calculated in java?
Explain the public class modifier?
Can we extend singleton class in java?
What happens to a static var that is defined within a method of a class?
which one is more efficient int x; 1. if(x==null) 2.if(null==x) state which one either 1 or 2?
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.
what is the use of pojo (plain old java objects)? how it is interact with crystal reports? pls urgent
What is flush buffer?
What is the function of java?
What does string [] args mean?