Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is the difference between C++ & Java?

Answer Posted / dsr

C++ java
pointers no pointers
multiple inheritance multiple inheritence with interface
platform dependent plotformindependent

Is This Answer Correct ?    86 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we instantiate interface in java?

1125


How hashmap increases its size in java?

987


What are the differences between processes and threads?

1063


How does a for loop work java?

1034


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.

2049


Is string an object?

1116


Which way a developer should use for creating thread, i.e. Sub classing thread or implementing runnable.

929


What are basic keywords?

1037


worst case complexities of Quick sort and Merge sort.

1027


What is the use of bufferedreader?

995


What is final method in java?

1024


Which language is java?

979


What is a line break?

1030


what is mena by object block any what is the use of that

2212


When is the finally clause of a try-catch-finally statement executed?

1061