Multiple choice

Interpreter translates the programme _____.

  1. line wise

  2. entire programme at once

  3. a set of programme at a time

  4. none of these

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Interpreters process source code line by line, translating and executing each statement before moving to the next. This differs from compilers, which translate the entire program into machine code before execution. The "line wise" option accurately describes this sequential processing.