In web browsing, URL stands for:
- (a)Uniform Resource Location
- (b)Universal Resource Location
- (c)Uniform Resource Locator
- (d)Universal Resource Locator
Correct — C, Uniform Resource Locator. A URL is the address a browser uses to fetch a resource on the web: it says which protocol to use and where the resource sits. Both words matter — 'Uniform', the word fixed by the IETF standard (RFC 1738, 1994), and 'Locator', because it names the thing that locates the resource, not the place itself. A full URL reads scheme://host:port/path?query#fragment, e.g. https://www.example.com/notes/page?id=7.
- (a)Uniform Resource Location — First word right, last word wrong. The standard expansion is 'Locator' — an agent noun for the string that does the locating. 'Location' is the commonest slip because it is the everyday English word.
- (b)Universal Resource Location — Both the first and the last word are wrong — neither 'Universal' nor 'Location' appears in the standardised expansion.
- (d)Universal Resource Locator — The strongest trap. 'Universal' does have a historical footing — Tim Berners-Lee's early 1994 write-up was titled 'Universal Resource Identifiers in WWW' — but the term the IETF standardised, and the one exams accept, is 'Uniform'.
A URL is one kind of URI (Uniform Resource Identifier). A URI identifies a resource; a URL is a URI that also tells you how and where to get it, by naming the protocol (scheme) and the host. A URN (Uniform Resource Name) names a resource persistently without saying where it lives. When you type a URL, the browser hands the host part to DNS, which returns the IP address of the server, and then fetches the path over the scheme's protocol (usually HTTPS).
All four options here are one word apart from each other, so this is a pure precision test — the examiner is checking whether you learnt the standard term or the loose one you hear in conversation. Two swaps are being tried at once: Uniform↔Universal in the first word, Locator↔Location in the last. Memorise the exact four words, and separately remember why 'Universal' feels right (it was in the earliest web documents) so the trap loses its pull.
- URL = Uniform Resource Locator, standardised in RFC 1738 (1994).
- Structure: scheme://host:port/path?query#fragment — e.g. https://www.example.com/notes/page?id=7.
- A URL is a subtype of URI (Uniform Resource Identifier); a URN names a resource without giving its location.
- The host portion of a URL is translated into an IP address by DNS (Domain Name System).
- Tim Berners-Lee, inventor of the World Wide Web, devised the URL/URI addressing scheme along with HTTP and HTML; his 1994 document used the older word 'Universal'.
One word decides the answer: Uniform (standard), not Universal (historical); Locator (the string), not Location (the place).
- Choosing 'Universal Resource Locator' — it sounds familiar because of early web documents, but the standard word is Uniform.
- Choosing 'Location' instead of 'Locator'.
- Treating URL and URI as interchangeable — a URL is a URI that also carries location/access information.
MPPSC's internet block is dominated by exact full-forms (URL, W3C, MPEG, DNS) and by 'which of these is NOT a browser/portal' questions. Learn the string exactly, word for word — a near-miss option is always on the paper.
Who among the following is considered as the inventor of the World Wide Web (WWW)?
- (a) Edward Kasner
- (b) Bill Gates
- (c) Tim Berners-Lee
- (d) Vinod Bham
Answer(c) Tim Berners-Lee
The same foundational-web block — Berners-Lee is the person who defined the URL/URI addressing scheme along with HTTP and HTML, so the two facts are learnt together.
In the field of Internet, W3C stands for:
- (a) World Wide Web Content
- (b) World Wide Web Commission
- (c) World Wide Web Center
- (d) World Wide Web Consortium
Answer(d) World Wide Web Consortium
Identical question design two years earlier — an exact web full-form with three near-miss options differing by a single word; W3C is also the body that maintains the web standards a URL follows.
On the Internet, the database that stores the names and addresses of different hosts is called ________.
- (a) Domain Name Service
- (b) Domain Name System (DNS)
- (c) DNS File System
- (d) None of these
Answer(b) Domain Name System (DNS)
The other half of web addressing — DNS is what turns the host name inside a URL into the server's IP address; note that this 2021 question used the same 'one wrong word' distractor trick.
- practice — not a real PYQ
In the address https://www.example.com/notes?id=7, the part 'https' is called the:
- (a)Scheme (protocol)
- (b)Domain name
- (c)Path
- (d)Query string
Answer(a) Scheme, i.e. the protocol the browser must use to fetch the resource.
- practice — not a real PYQ
Which system translates the domain name inside a URL into the server's IP address?
- (a)DNS (Domain Name System)
- (b)FTP
- (c)SMTP
- (d)HTML
Answer(a) DNS — the Domain Name System resolves the host name in a URL to an IP address.