What is the main difference between C++ and Java

Answer Posted / kalyan

c++ is platform dependent and java is platform independent language. system programming is written using c,c++ and web based applications can be developed by java.

Is This Answer Correct ?    16 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the advantages of polymorphism?

566


What is overriding vs overloading?

571


#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

2155


what is graphics

2000


What is the highest level of cohesion?

564






Write a program to reverse a string using recursive function?

1782


Write a program to sort the number with different sorts in one program ??

1905


to find out the minimum of two integer number of two different classes using friend function

1630


Give two or more real cenario of virtual function and vertual object

1843


What are main features of oop?

621


program for insertion ,deletion,sorting in double link list

2269


What is abstraction oop?

611


What are the 4 pillars of oop?

660


Why do we need polymorphism in c#?

672


What is ambiguity in inheritance?

615