Computer Science, asked by BAkash6580, 1 year ago

Which is more memory efficient interpreter or compiler?

Answers

Answered by Praveen1632
0
compiler is more memory efficient cause it's do more converting
Answered by aqibkincsem
0

Both compiler and interpreter take a different approach for  conversion of source code into machine code and bytecode.

Compiler executes conditional control statements (like if-else and switch-case) and logical constructs faster than an interpreter.

The interpreter executes conditional control statements at a much slower speed.

Compiled programs take more memory because the entire object code has to reside in memory.

Similar questions