Answer Posted / madhan kumar.s
java program is platform independent
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is Java Shutdown Hook?
Is java a prime method?
Why do we need singleton?
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.
When do I need to use reflection feature in java?
What does microservices mean?
os is developed in c no java is more secured then c na why dont the os developed is developed using java
How to call one constructor from the other constructor ?
How to create a thread in java?
What is purpose of find feature?
Can we override static methods in java?
Difference between final and effectively final ? Why is effectively final even required ?
How do you add an element to a hashset in java?
what are the states associated in the thread? : Java thread
Difference difference paint() and paintcomponent()?