Answer Posted / nikhil
Wrapper classes are classes that allow primitive types to
be accessed as objects.
| Is This Answer Correct ? | 50 Yes | 13 No |
Post New Answer View All Answers
What is Hierarchy of exception?
Which class represents the socket that both the client and server use to communicate with each other?
What are the types of relation?
What is tree in java?
What is the maximum size of byte array in java?
What is a void method java?
What is output buffer?
Can a class extend more than one class?
How to pass arraylist to stored procedure 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 is java literals?
Which class contains a method: cloneable or object?
Does unicode support all languages?
How can a gui component handle its own events in java programming?
How do I get 64 bit java?