Answer Posted / ranganathkini
Sun Microsystems's implementation of the Java Virtual
Machine is named HotSpot. It is a virtual machine
implementation that strictly adheres to the Java Virtual
Machine Specification.
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is the purpose of the enableevents() method?
Write down program for following scenario. Use java coding standard. You have array list with some words in it..we will call it as dictionary….and you have a arbitrary string containing some chars in it. You have to go through each word of dictionary and find out if that word can be constructed with the help of chars from arbitrary string given. If you find the word print it else print none.
Why there are some null interface in JAVA? What does it mean? Give some null interface in JAVA?
How will you call an Applet using Java Script Function?
what type of questions asked for barclays technologies pune please send urgent
Can we increase array size dynamically in java?
In case of inheritance what is the execution order of constructor and destructor?
Do you need to import math in java?
Which is better list or arraylist 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.
Why bytecode is called bytecode?
Is there any difference between nested classes and inner classes?
What is a consumer in java?
What does business logic mean?
What is the method to expand and collapse nodes in a jtree?