Which HTTP method is commonly used to read or retrieve data in a RESTful API?
- DELETE
- GET
- POST
- PUT
The HTTP method commonly used to read or retrieve data in a RESTful API is GET. It is used to fetch information from a specified resource. Other methods (POST, PUT, DELETE) are typically used for creating, updating, and deleting resources.
Loading...
Related Quiz
- The while loop continues execution as long as the test expression remains _______.
- You are developing a Python application where you need to store configuration settings. Which data type would you use to store key-value pairs of configuration settings?
- You need to create a visualization that represents the correlation between all numerical variables in a dataset. Which kind of plot would you use in Seaborn?
- If a class has the slots attribute defined, it means the instances of that class will not have a _______ dictionary.
- What is the purpose of the assert statement in Python?