Exam MCPA - Level 1 All QuestionsBrowse all questions from this exam
Question 27

The responses to some HTTP requests can be cached depending on the HTTP verb used in the request.

According to the HTTP specification, for what HTTP verbs is this safe to do?

    Correct Answer: D

    According to the HTTP specification, responses to GET and HEAD requests can be safely cached because these requests are considered safe and idempotent, meaning they do not result in a change or deletion of resources on the server. OPTIONS requests, although rarely cached, are also safe and idempotent as they are used for describing the communication options available for the target resource without modifying it. Therefore, it is safe to cache responses for GET, OPTIONS, and HEAD requests.

Discussion
Pavan_NagineniOption: D

D. GET, OPTIONS, HEAD

Neo_0000Option: B

After seeing the many comments here and elsewhere, I was choosing option D, which is wrong. OPTIONS HTTP method is non-cacheable. The right answer is B. By default, POST HTTP method is non-cacheable but by adding Cache-Control headers, it can be made cacheable.

Alandt

You are wrong. According to the official Mulesoft practice exam the correct answer is D. Don't ask me why, but that's the answer they have given so it should be right.

FreedoxOption: D

The answer is D. According to the HTTP specification, it is safe to cache responses for HTTP verbs GET, OPTIONS, and HEAD. This is because these requests are considered "safe" and do not modify or delete any resources on the server. Therefore, caching responses for these requests can improve performance and reduce the number of requests made to the server. However, caching responses for requests that modify or delete resources (such as PUT, POST, and DELETE) can cause issues and should be avoided.

vikas_muleOption: D

D is correct

cuisal92Option: D

D. GET, OPTIONS, HEAD

sirious09Option: B

B. OPTIONS is not cacheable. https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/OPTIONS https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/POST

calazansOption: D

GET, OPTIONS, HEAD

FL107Option: B

Answer: B

Outdoor25Option: D

D is correct

AB317Option: D

Answer: D