Q1: In a URI, what delimiter indicates the start of an authority component when it is present
Multiple Choice
**Explanation:**
**Terms:** authority, delimiter, scheme. In the generic URI syntax, the authority component is preceded by "//" and is followed by path, query, or fragment delimiters.
**Correct (C):** "//" signals that the following part is an authority, which can include userinfo, host, and port.
**Options:**
- A (incorrect): # introduces the fragment component, not authority.
- B (incorrect): ? introduces the query component.
- C (correct): // is the authority introducer in the generic syntax.
**Related:** Not all schemes use an authority. For example, some schemes use an opaque path without //.