FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
in this case a single line is executed at a time, it is time consuming
A
ASSEMBLER
B
INTERPRETER
C
COMPILER
D
None of the above
Explanation: 

Detailed explanation-1: -Working of Interpreter The Interpreter translates a program written in a High-level language into machine-understandable code one line at a time during the execution of the program.

Detailed explanation-2: -Interpreters usually take less amount of time to analyze the source code. However, the overall execution time is comparatively slower than compilers. Compilers usually take a large amount of time to analyze the source code. However, the overall execution time is comparatively faster than interpreters.

Detailed explanation-3: -A compiled program is faster to run than an interpreted program, but it takes more time to compile and run a program than to just interpret it. A compiler indeed produces faster programs. It happens fundamentally because it must analyze each statement just once, while an interpreter must analyze it each time.

Detailed explanation-4: -Interpreters are frequently used to execute command languages, and glue languages since each operator executed in command language is usually an invocation of a complex routine such as an editor or compiler. Self-modifying code can easily be implemented in an interpreted language.

There is 1 question to complete.