difference between compiler and interpreter
insta post
compiler:
1. Compiler Takes Entire program as input.
2. Intermediate Object Code is Generated.
3. Conditional Control Statements are Executes
faster.
4. More Memory Requirement.
5.Program need not be compiled every time.
6. Errors are displayed after entire program is checked.
Example: C Compiler
interpreter:
1. Interpreter Takes Single instruction as Input.
2. No Intermediate Object Code is Generated.
3. Conditional Control Statements are Executes slower.
4. Memory Requirement is Less.
5. Every time higher level program Converted into lower level program.
6. Errors are displayed for every instruction interpreted (if any).
Example: BASIC
0 Comments