The shell is also known as :
ACommand
BPrompt
CKernel
DCommand Interpreter
Answer:
D. Command Interpreter
Read Explanation:
Command Interpreter is the correct answer.
The Shell acts as the interface between the user and the operating system's core (the Kernel). Its main job is to take commands typed by the user, interpret them, and translate them into instructions that the Kernel can execute.
Here is a quick breakdown of the options:
Command Interpreter: The official technical term for a Shell (e.g.,
bash,zsh,cmd.exe).Kernel: The core part of the Operating System that manages hardware resources directly.
Prompt: The visual cue or symbol (like
$orC:\>) on the screen indicating that the Shell is ready for your input.Command: The actual instruction/string you type into the command prompt for the Shell to process.
