Complete the sentence to describe how to retrieve data from a server.
To get data from a server, you use a [1] request.
A GET request is used to retrieve data from a server without changing anything.
Complete the sentence to describe how to send data to a server.
To send data to a server, you use a [1] request.A POST request is used to send data to a server, often to create or update something.
Fix the error in the sentence about request methods.
A [1] request is used to delete data from a server.
The DELETE request is used to remove data from a server.
Fill both blanks to complete the explanation about request methods.
A [1] request is used to update data, while a [2] request is used to create new data.
PUT requests update existing data, replacing it fully, while POST requests create new data on the server.
Fill all three blanks to complete the sentence about HTTP request methods.
The [1] method retrieves data, the [2] method sends data, and the [3] method removes data.
GET retrieves data, POST sends data to create or update, and DELETE removes data from the server.
