What is serial version uid and its importance in java?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of StringTokenizer class?
What is local variable and instance variable?
What is sorting in java?
What is the middleware?
What are different types of states exist for a thread?
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 high level language in computer?
What are null interfaces in JAVA ? and give me some examples?
What is widening and narrowing in java? Discuss with an example.
I want to persist data of objects for later use. What’s the best approach to do so?
What is the function of compareto in java?
What is difference between compatible and incompatible changes in serialization?