Which of the following statement is true for Interpreter? *
Answers
Answer:
Only S1, S2 and S4
Explanation:
d is correct
Answer:
Option B: From the source program, the interpreter creates an object program.
Explanation:
Your query is incomplete, though. It's possible that you may be alluding to the following"
A. From the source program, the interpreter creates an object program.
B. Interpreter is a kind of translator
C. Interpreter analyses each source statement every time it is to be declined.
D. All of the above
Reasons:
Option B is the proper solution:
One instruction at a time, an interpreter converts source code into object code.
It is comparable to having a human translator translate a person's speech word-by-word into another language as they speak.
Incorrect statements' are:
Option A:
- The software is created by an interpreter.
- Neither does it create machine code or link the files.
- While running the program, the source statements are executed line by line.
- When employing compilers, the program codes are already translated into machine code. Hence there is no need.
Option C:
- Each time a source statement is to be executed, the interpreter examines it.
- Since in options it is given as declined which is contrast to the exact principle, it is the wrong option.
Option D:
Neither the option is true other than Option B, the option D is not applicable.
#SPJ2