Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the sentence to describe how to retrieve data from a server.
No-Code
To get data from a server, you use a [1] request.
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing GET with POST, which sends data to the server.
Thinking DELETE is used to get data.
✗ Incorrect
A GET request is used to retrieve data from a server without changing anything.
2fill in blank
mediumComplete the sentence to describe how to send data to a server.
No-Code
To send data to a server, you use a [1] request. Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using GET instead of POST to send data.
Confusing POST with PATCH, which updates part of data.
✗ Incorrect
A POST request is used to send data to a server, often to create or update something.
3fill in blank
hardFix the error in the sentence about request methods.
No-Code
A [1] request is used to delete data from a server.
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing DELETE with GET or POST.
Thinking POST deletes data.
✗ Incorrect
The DELETE request is used to remove data from a server.
4fill in blank
hardFill both blanks to complete the explanation about request methods.
No-Code
A [1] request is used to update data, while a [2] request is used to create new data.
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up POST and PUT methods.
Thinking GET updates data.
✗ Incorrect
PUT requests update existing data, replacing it fully, while POST requests create new data on the server.
5fill in blank
hardFill all three blanks to complete the sentence about HTTP request methods.
No-Code
The [1] method retrieves data, the [2] method sends data, and the [3] method removes data.
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Mixing up the order of methods.
Confusing POST with DELETE.
✗ Incorrect
GET retrieves data, POST sends data to create or update, and DELETE removes data from the server.