What is the difference between C++ and java?

Answer Posted / poorna

c++ and java these both are object oriented programming
langauge but java elimainated some of the difficulty of
pointers are eliminated in java

Is This Answer Correct ?    5 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is polymorphism in oop example?

715


What is encapsulation selenium?

743


What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }

2193


What is class and object with example?

798


Can you explain polymorphism?

806


What is destructor example?

770


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2357


2. Give the different notations for the class.\

1791


what are the realtime excercises in C++?

2535


Why multiple inheritance is not possible?

780


What is a superclass in oop?

902


What are objects in oop?

818


What is inheritance in oop?

791


what are the different types of qualifier in java?

2005


What is abstraction and encapsulation?

757