Google News
logo
FastAPI - Quiz(MCQ)
Which of the following is a decorator for defining a route or endpoint that handles GET requests?
A)
@app.getter()
B)
@app.get()
C)
@app.get_request()
D)
None of the above

Correct Answer :   @app.get()


Explanation : @app.get() is a decorator for defining a route or endpoint that handles GET requests.

Advertisement