200-201 · Question #47
Which event artifact is used to identity HTTP GET requests for a specific file?
The correct answer is D. URI. The Uniform Resource Identifier (URI) is the specific event artifact used to identify the target resource in an HTTP GET request.
Question
Which event artifact is used to identity HTTP GET requests for a specific file?
Options
- Adestination IP address
- BTCP ACK
- CHTTP status code
- DURI
How the community answered
(23 responses)- A4% (1)
- B4% (1)
- D91% (21)
Why each option
The Uniform Resource Identifier (URI) is the specific event artifact used to identify the target resource in an HTTP GET request.
The destination IP address identifies the server hosting the resource, not the specific file being requested within that server.
A TCP ACK (Acknowledgement) is a fundamental part of TCP's reliable data transfer mechanism and does not identify the content of an HTTP request.
An HTTP status code (e.g., 200 OK, 404 Not Found) is part of the server's response to a request, not an element of the request itself that specifies the file.
The URI (Uniform Resource Identifier), which includes the path and filename (e.g., /index.html), is specifically used in an HTTP GET request to indicate which file or resource the client is requesting from the server.
Concept tested: HTTP GET request components
Source: https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/GET
Topics
Community Discussion
No community discussion yet for this question.