Difficulty: Easy
Correct Answer: POP3
Explanation:
Introduction / Context:
Internet email involves multiple protocols. SMTP moves mail between servers and from clients to servers; POP3 and IMAP retrieve mail from a mailbox for end users. This question contrasts simple download models with more advanced server-side management.
Given Data / Assumptions:
Concept / Approach:
POP3 (Post Office Protocol v3) provides a simple model: connect, authenticate, list, retrieve, optionally delete. While POP3 has commands like LIST and RETR, typical workflows lack sophisticated server-side filtering, partial fetch, and folder management inherent to IMAP. IMAP excels at selective, synchronized access across devices.
Step-by-Step Solution:
Identify protocols: SMTP (transport), POP3 (basic retrieval), IMAP (advanced retrieval).Match the described behavior—simple mailbox and non-rich selection—to POP3.Exclude unrelated protocols (DHCP assigns IPs; NNTP is for Usenet).
Verification / Alternative check:
Standard client settings: “POP3 account” downloads and typically stores mail locally with minimal server-side state; “IMAP account” keeps messages server-side with folders, flags, and selective sync/partial fetch.
Why Other Options Are Wrong:
SMTP: Pushes mail between servers and client-to-server; not for end-user retrieval.
Common Pitfalls:
Assuming POP3 equals “no selection at all.” It can list message numbers, but compared to IMAP it lacks selective, folder-aware, partial, server-resident workflows.
Final Answer:
POP3
Discussion & Comments