NEW
Font size
WorksheetsClasses & Objects Quizs
Total questions: 20
Worksheet time: 10mins
The GET method is used to get data from a server.
TRUE
FALSE
A 404 status code means the resource was not found.
TRUE
FALSE
Which tool is used to test Python code?
Flask
Pytest
Pandas
NumPy
Flask is used to build APIs in Python.
TRUE
FALSE
DELETE is used to remove data from the server.
TRUE
FALSE
Which HTTP method is used to create new data?
GET
POST
DELETE
PUT
Which Python framework is simple and used to build APIs?
Flask
Django
React
Node
What does the GET method do?
Send data to the server
Delete data from the server
Retrieve data from the server
Update existing data
PUT is used to update existing data.
TRUE
FALSE
Which HTTP method removes data from the server?
GET
PUT
DELETE
POST
The PUT method replaces existing data.
TRUE
FALSE
Which status code indicates a server error?
404
500
200
301
Which method is used to update existing data?
GET
POST
PUT
DELETE
Which HTTP method is used to get data from a server?
POST
GET
PUT
DELETE
What does the 200 status code indicate?
Resource not found
Success
Bad request
Server error
Status code 500 means the server has an error.
TRUE
FALSE
Which HTTP method sends data to a server?
GET
POST
DELETE
PUT
Which status code means success?
404
500
200
301
What does status code 404 mean?
Success
Not Found
Server Error
Bad Request
Status code 200 is a success status.
TRUE
FALSE
