+ 6
Can you tell me difference between java and c++?
there are more compliler and coding languages i almost confuse what is difference between java and c++. please help me that i can understand easily.
11 RĂ©ponses
+ 18
Most differences between the features of the two languages arise due to the use of different programming paradigms. C++ breaks down to functions while JAVA breaks down to Objects. C++ is more object-oriented while JAVA is data-oriented. 2. Java is an Interpreted language while C++ is a compiled language.
Both C++ and java are object oriented programming languages.
Both contains OOP features.
+ 10
both are object oriented programming language but if you know c++ than java will be easy to understand for u main difference between java and C++ is Java is platform independent language and it is mainly used for design web based application but C++ is platform dependent language .hope it helped u till some extend..
+ 6
@Pawan Rajpurohit. I liked the way u keep on challenging me. well doneđđđđđđđđđgood wishesđ
+ 2
java is a language where you have to write the code once and you can run it anywhere,c++ needs a specific code for a specific platform
+ 2
in java also develope desktop application like with help of awt pakage
+ 2
thank You i Enjoyed with you challenging
+ 1
Hiiii
+ 1
Anusha
+ 1
c++ is platform oriented ,where as java is not platform oriented.
c++ is partially object oriented but java is fully object oriented.
+ 1
download compiler on android... for coding everywhere in pocket.
+ 1
Source: https://stackoverflow.com/questions/1326071/is-java-a-compiled-or-an-interpreted-programming-language
"Java is a compiled programming language, but rather than compile straight to executable machine code, it compiles to an intermediate binary form called JVM byte code. The byte code is then compiled and/or interpreted to run the program."
ïżŒ
"Code written in Java is:
First compiled to bytecode by a program called javac as shown in the left section of the image above;Then, as shown in the right section of the above image, [2]another program called java starts the Java runtime environment and it may compile and/or interpret the bytecode by using the Java Interpreter/JIT Compiler."