Answer Posted / gautham
It was james gosling who found java.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is string example?
What is classpath?
What is a website container?
How does arraylist size increase in java?
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 scanner in java?
Is main a function?
how to deploy tomcatserver to weblogic server? write d following steps?
Is string a class?
Is final static java?
Can we have try without catch block?
List primitive java types?
Does variable declaration allocate memory?
What is difference between array and vector?
Write code of any action class?