How 'java' got its name and what it stands for?

Answer Posted / guru tata

java was first named as OAK , there after one day james gosling was browsing net meanwhile he found a company called OAK technologies. Then he decided to change this application name. one fine day the four people(James Gosling,mike Sheridon, bill joy and patrick naughton) were met at the coffie shop then they are discussing new name for their software, these four people like coffie, the coffie brand name is JAVA, so they finalized application name to JAVA

Is This Answer Correct ?    13 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

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.

1576


What are the 4 types of characters?

535


What are the application of stack?

492


How objects are stored in java?

542


Is java map thread safe?

485






When object is created and destroyed?

632


What do the thread?class methods run() and start() do?

530


What is use of static in java?

515


What is assembly language?

546


Explain when we should make an instance variable private.

599


Why java is secure? Explain.

581


What is java string pool?

533


Why webdriver is an interface?

572


How do I find and replace in word?

528


Which is the class in java?

510