Answer Posted / blue arkos
Java is interpreted. This means that java source code is
compiled once, but it has to be interpreted by the JVM (Java
Virtual Machine) everytime the programme is executed. On the
other hand, C++ is not. C++ source code will compile once,
but it is NOT interpreted everytime the programme runs,
because C++ code is converted directly to machine language
instructions (in the machine that the C++ programme was
compiled). This is the reason why C++ is NOT portable.
Java is portable. This means that any Java programme can be
executed in any machine, provided that it has a JVM. C++
applications can only be executed in the machine in which
they were created (or in some cases, in similar machines
e.g. a C++ application that was writen in a computer under
the Windows XP Operating System, it will probably run in
other computers with Windows XP and maybe in computers with
other Windows versions, but certainly not in a cell phone).
That's why Java programmes are slower. They have to be
interpreted at runtime and this yields some overhead. This
is the efficiency - portability trade-off. Java applications
are portable, but C++ applications are executed faster.
Finally, there are some ways to overcome this trade-off from
both languages' point of view, but this is not the subject
of the question.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What is += mean in java?
What is an 8 bit word?
Why is it called buffering?
What is the purpose of static methods and static variables?
What is identifier give example?
Does printwriter create a file?
What is unicode full form?
What does singleton mean in java?
What is the difference between yield() and sleep()?
Is binary a low level language?
What is stored procedure. How do you create stored procedure ?
Why does java have two ways to create child threads? Which way is better?
What is the significance of java packages?
What is meant by oops concept in java?
What is object data type?