What is an example of a boolean?
No Answer is Posted For this Question
Be the First to Post Answer
What is this keyword in java?
Can static methods be overridden?
What checkbox method allows you to tell if a checkbox is checked?
What are invisible components?.
what are the different access specifiers that can be used by interfaces and abstract classes? can anyone give me detailed description on this
11 Answers IBM, L&T,
Advantages of Inheritance in java.
Explain how can you debug the Java code?
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.
Where local and global variables are stored?
For which statements we use a label?
What is the internal implementation of set in java?
Is list ordered in java?