What is the primary technical limitation of an interpreter compared to a compiler? MCQ with Answer and Explanation

What is the primary technical limitation of an interpreter compared to a compiler?
A. An interpreter can only translate assembly language commands.
B. An interpreter makes the software debugging process harder.
C. Interpreted code runs slower because translation happens line-by-line during runtime.
D. An interpreter creates large standalone binary executable files.
Answer: Option C
Solution (By JKSSB Mock Tests)
Because interpreters translate and execute source code line-by-line during program execution, they are slower than pre-compiled software.

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Computer Software Questions

Question #1
What is the primary role of a decompiler program in software engineering?
A. To reverse engineer an executable binary file back into high-level source code.
B. To scrub malicious registry entries before the operating system boots up.
C. To merge separate static library modules into a single binary file.
D. To translate assembly text into machine binary code files.

Correct Answer: Option A


Explanation:
Decompilers attempt to translate low-level machine or bytecode files back into a readable high-level programming language to aid reverse engineering.

This question belongs to: Computer Computer Software
Question #2
Which software category encompasses compilers, interpreters, debuggers, and text editors used collectively by engineers to write and test code?
A. Application Software Suites
B. Operating System Kernels
C. Programming Software / Software Development Tools
D. Device Driver Infrastructure

Correct Answer: Option C


Explanation:
Programming software includes tools that assist developers in creating, debugging, compiling, and maintaining other software programs.

This question belongs to: Computer Computer Software
Question #3
Which system utility program helps free up local storage space by searching for and clearing out temporary internet files, log logs, and trash items safely?
A. Data Recovery Suite
B. Disk Cleanup Tool
C. Disk Defragmenter
D. File Archiver

Correct Answer: Option B


Explanation:
Disk cleanup tools scan storage sectors to purge redundant system logs, browser cache data, and recycling bin items to free up drive space.

This question belongs to: Computer Computer Software