COMPUTER PROGRAMMING FUNDAMENTALS
WHAT IS PROGRAMMING
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
Compiler
|
|
Assembler
|
|
Linker
|
|
Interpreter
|
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.