Difference Compiler vs Interpreter
Compiler
|
Interpreter
|
Scans the entire program before translating it into machine code.
|
Translates
and executes the program line by line.
|
Converts the
entire program to machine code and only when all the syntax errors Removed
does execution take place.
|
Each time the
program is executed; every line is
checked for syntax
error and then converted into
the equivalent
machine code.
|
Slow in debugging.
|
Good for Fast
debugging.
|
Execution
Time is less.
|
Execution Time is
more.
|
0 comments:
Post a Comment