In HTTP, GET is classified as a safe method. What does that mean?
- aThe request is automatically encrypted by the browser, which is what makes it safe to send
- bIt is meant only to read data and is not expected to change server state✓
- cThe server guarantees the request can never return an error
- dIt can only be sent to endpoints that require no authentication
Explanation:Safe means the client does not request any state change — which is why GETs can be cached, prefetched and retried freely. "Safe" is about semantics, not security (a): encryption comes from HTTPS, not from the method.