What does the CORS mechanism control?
- A Whether a browser allows a page from one origin to read a response from another
- B The maximum request rate
- C Which HTTP methods a server supports
- D Whether cookies are encrypted
Answer
Whether a browser allows a page from one origin to read a response from another
CORS is enforced by the browser and configured by response headers on the server. A CORS error means the response was blocked from being read, not that the request was never sent.





