what is difference between java and c++. please focus your attention to compile or interpretation.
Answers
Answered by
3
C++ only uses compiler whereas java uses both Compiler and interpreter.
Java source code is first converted into bytecode by at compilation time. The javasdl interpreter executes this bytecode at runtime and produces output.
Answered by
1
Answer:
both are objects oriented programming languages.C++ is an evolution to C.Which was a system progamming.
The main difference is C++ programs are compiled directly to machine code.While Java programs are compiled to be run in a "virtual Machine" the JVM most of the cases.
Similar questions