Computer Science, asked by sunitagupta54637, 8 months ago

Difference between the compiler and interpreter?

Answers

Answered by chaitanyasai94
1

Answer:

COMPILER

A program that converts instructions into a machine-code or lower-level form so that they can be read and executed by a computer.

INTERPRETER

In computer science, an interpreter is a computer program that directly executes instructions written in a programming or scripting language, without requiring them previously to have been compiled into a machine language program.

Answered by sunakat483
1

Answer:

nterpreter translates just one statement of the program at a time into machine code. Compiler scans the entire program and translates the whole of it into machine code at once. An interpreter takes very less time to analyze the source code. However, the overall time to execute the process is much slower.

Similar questions