What are desktop procedures?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

How does arrays sort work in java?

0 Answers  


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.

0 Answers  


What is encapsulation? Elaborate with example?

1 Answers   BMC,


What is the life cycle of an Applet ?

1 Answers  


What are the methods of object class ?

0 Answers  






Can you start a thread twice in Java?

0 Answers  


Is char a data type in java?

0 Answers  


What are autoboxing and unboxing? When does it occur?

0 Answers  


What is sorting in java?

0 Answers  


What is Enum in Java?

0 Answers  


what are the purposes of native, transiant key words?

2 Answers  


What is a default constructor and also define copy contrucyor?

0 Answers   Global Logic,


Categories