InterviewSolution
Saved Bookmarks
| 1. |
What are the components of a URL ? Give some examples. |
|
Answer» Answer: A URL has two MAIN components: Protocol identifier: For the URL HTTP://example.com , the protocol identifier is http . Resource name: For the URL http://example.com , the resource name is example.com . Note that the protocol identifier and the resource name are separated by a colon and two FORWARD SLASHES. |
|