Difficulty: Easy
Correct Answer: 80
Explanation:
Introduction / Context:
Application protocols are commonly associated with specific port numbers to simplify configuration and interoperability. Knowing the default port for HTTP helps with firewall rules, URL construction, and basic troubleshooting of web services.
Given Data / Assumptions:
Concept / Approach:
The default port for HTTP is 80/TCP. While HTTP can technically run on other ports, port 80 is the conventional and well-known assignment. (For comparison, HTTPS uses 443/TCP; Telnet uses 23/TCP.)
Step-by-Step Solution:
Verification / Alternative check:
Accessing ‘‘http://host/’’
implicitly connects to port 80 unless a different port is specified.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing HTTP (80) with HTTPS (443); assuming the presence of a port in a URL implies HTTPS automatically.
Final Answer:
80.
Discussion & Comments