What is the difference between C++ & Java?

Answer Posted / suresh

Visit this blog http://www.javaorange.blogspot.com you will
find over 20 - 25 differences between C++ and Java.

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is files manifesting?

1718


Why collection doesn’t extend cloneable and serializable interfaces?

633


Can private members of a base class are inheritable justify?

477


What is the synonym of procedure?

523


What classes of exceptions may be caught by a catch clause in java programming?

693






how do I create a runnable with inheritance? : Java thread

501


What is type parameter in java?

510


What are keywords in programming?

556


why we use merge option in hybernate pls give a ex snippet

1445


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 is a "pure virtual" member function?

592


What is __ init __ functions?

536


What is super in java?

567


What do you mean by singleton class in java?

508


What language is java written?

527