How 'java' got its name and what it stands for?
Answer Posted / ranganathkini
"Java" is supposed to have got its name from one of the
members of the original developer team Kim Polese. But it is
widely believed that Java (originally called "Oak") was
concieved by the original creators at a local coffee bar.
To credit this incident, the creators used a magic number as
a header to all the Java bytecode class file. The number:
0xCAFEBABE
here is a link if u want to know more:
http://en.wikipedia.org/wiki/Class_(file_format)
| Is This Answer Correct ? | 47 Yes | 8 No |
Post New Answer View All Answers
What is the lifetime and scope of a variable?
What is the latest version of java?
what is thread? What are the high-level thread states? : Java thread
can any body body expalin best definitions & best real time exaples for opps concepts.
Is set thread safe java?
What is bitwise complement?
What are the topics in core java?
Describe the term diamond problem.
Can we create an object of private class?
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 a class variable?
Where can I find jdk in my computer?
What is meant by method overriding?
Explain about interrupt() method of thread class ?
What is methodological framework?