Answer Posted / ravikiran
JNDI is the java naming and directory interface and is the
root for the look up directory service to looking up for a
particular resource
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What 4 doubled?
How to create a fecelet view?
What is java in layman terms?
What are accessor methods in java?
What are the library functions in java?
What is the use of optional ?
Can set contain duplicates?
Explain how to convert any java object into byte array.
What is meant by method overriding?
explain multi-threading in java?
What variables are stored in stack?
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 are peerless components?
What does this () mean in constructor chaining concept?
What is data member in java?