Difficulty: Easy
Correct Answer: The address of a document or "page" on the World Wide Web
Explanation:
Introduction / Context:
Every page, image, or file on the Web is located using a standard address. Understanding this addressing scheme is essential for browsing, linking, and web development.
Given Data / Assumptions:
Concept / Approach:
URL stands for Uniform Resource Locator. It specifies how to access a resource (scheme such as http, https, ftp), where it resides (host/domain), and often which resource path and query to fetch. In everyday use, a URL is the “web address” you type in a browser to retrieve content.
Step-by-Step Solution:
Verification / Alternative check:
Browser address bars, documentation, and tutorials consistently call these strings URLs, confirming that a URL is the address of a web resource.
Why Other Options Are Wrong:
Common Pitfalls:
Confusing URL with the broader term URI. All URLs are URIs, but not all URIs are locators; however, for web usage, “URL” as “web address” is correct.
Final Answer:
The address of a document or "page" on the World Wide Web
Discussion & Comments