what is the Diff. between Access Specifiers and Access
Modifiers?
Answer Posted / ejp
Still wrong. Don't you people read the thread? There is no
such thing as an access specifier in Java.
| Is This Answer Correct ? | 6 Yes | 9 No |
Post New Answer View All Answers
Why is java architectural neutral?
How garbage collection is done 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 about features of local inner class?
In java how do we copy objects?
What is string builder?
What is google full form?
How many types of flags are there?
What is meant by 'bit masking' in java?
What will happen if non-synchronized method calls a static synchronized method and what kind of lock it acquires?
What purpose do the keywords final, finally, and finalize fulfill?
What is the difference between double and float variables in java?
what is thread? : Java thread
Can we use static class instead of singleton?
What is java’s garbage collected heap?