FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
A type of translator that converts code one line at a time into a program and runs it is a:
A
Compiler
B
Assembler
C
Linker
D
Interpreter
Explanation: 

Detailed explanation-1: -Answer: Compiler: This is a translation program that converts a complete high-level program code to machine code in one go. Interpreter: This is also a translation program that converts a complete high-level program code to machine code but one line of code at a time.

Detailed explanation-2: -Interpreters. An interpreter translates source code into machine code one instruction at a time. It is similar to a human translator translating what a person says into another language, sentence by sentence, as they speak. The resulting machine code is then executed immediately.

Detailed explanation-3: -Interpreter: An interpreter translates the code line by line when the program is running.

Detailed explanation-4: -Compilers translate code all at once and the processor then executes upon the machine language that the compiler produced.

There is 1 question to complete.