C: get all the same newest response
-> Every read receives the most recent write or fails (strong consistency).
-> In a distributed system, when data is written to one node, all subsequent reads (from any node) must return the most up-to-date value
(may has some latency on read request to get the up-to-date data)(synchronous).
Example: If you write X=100 on Node A, a read from Node B should immediately return X=100, not an older version.
A: get response even some node fail
-> The system does not refuse requests as long as there is a reachable node, even if it means returning stale (outdated) data.