COMPUTER SOFTWARE
PROGRAMMING LANGUAGES
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
Assembler
|
|
Compiler
|
|
Interpreter
|
|
None of the above
|
Detailed explanation-1: -An interpreter is a program that reads a high-level program and does what it says. In effect, it translates the program line-by-line, alternately reading lines and carrying out commands. A compiler is a program that reads a high-level program and translates it all at once, before executing any of the commands.
Detailed explanation-2: -Answer: Interpreter translates and executes program at run time line by line. an interpreter is a computer program that directly executes, i.e. performs, instructions written in a programming or scripting language, without requiring them previously to have been compiled into a machine language program.
Detailed explanation-3: -The interpreter converts the source code line-by-line during RUN Time. Interpret completely translates a program written in a high-level language into machine level language. Interpreter allows evaluation and modification of the program while it is executing.
Detailed explanation-4: -YES INTERPRETER DOES TRANSLATE PROGRAM LINE BY LINE.
Detailed explanation-5: -Interpreter. Interpreter is a translator which is used to convert programs in high-level language to low-level language. Interpreter translates line by line and reports the error once it encountered during the translation process.