What is the default HTTP method used by Flask routes?
a) POST
b) PUT
c) DELETE
d) GET
Answer:
d) GET
Explanation:
The default HTTP method for Flask routes is GET, which is used for retrieving data from the server.
The default HTTP method for Flask routes is GET, which is used for retrieving data from the server.