Which language translator parses code tokens dynamically, translating statements into machine instructions as they hit execution loops without generating a standalone binary file?
Explanation:
Interpreters translate code statements line-by-line in real time during execution, which provides flexibility but adds performance overhead.
No comments yet. Be the first to start the discussion!