Home »
MCQs »
FastAPI MCQs
Which of the following statement is True (Regarding Request body and Response Body in FastAPI)?
31. Which of the following statement is True?
- A request body is data sent by the client to your API. A response body is the data your API sends to the client.
- A response body is data sent by the client to your API. A request body is the data your API sends to the client.
Answer: A) A request body is data sent by the client to your API. A response body is the data your API sends to the client.
Explanation:
Statement A is correct; a request body is data sent by the client to your API. A response body is the data your API sends to the client.