What do u mean by wrapper Class?
What do u mean by Jvm... How do u change JVM for other OS?
Or No need to Change ...? its like tricky
Answer Posted / ravikiran
wrapper class is the one which will allow the primitive
datatypes to be used as objects.
Jvm is the java virtual machine which will convert the byte
code to user understandable code.
| Is This Answer Correct ? | 22 Yes | 0 No |
Post New Answer View All Answers
What is the longest unicode character?
What is mvc in java?
Can we force garbage collector to run ?
Is java a prime method?
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 heterogeneous in java?
What does a za z0 9 mean?
Is java a super set of javascript?
Can a static method be overridden in java?
What is the nested interface?
What is private protected in java?
What modifiers are allowed for methods in an interface?
What are the advantages of compiled language?
What is the use of bufferedreader?
How do you check if a string contains only numeric digits?