Subdomain 1.2: Identify features of an API-led approach.
1.A company migrates its on-premises order database to a new cloud-hosted database with a different connection protocol. Because the application network was built using an API-led approach, only one layer's implementation needs to change to accommodate the new backend. Which layer is that?
- A.Experience API
- B.Process API
- C.System API
- D.All three layers must change
Show answer & explanation
Correct answer: C — System API
- A. This layer only shapes data for a channel; it has no direct knowledge of the backend connection protocol, so it would not need to change.
- B. This layer orchestrates calls to a stable backend interface and is unaware of what protocol the underlying database uses, so it stays unaffected by the migration.
- C. This is the only layer that connects directly to the backend, so isolating the new connection protocol here is exactly what shields the other layers from the change.
- D. Requiring every layer to change would mean the architecture failed to isolate backend changes, which defeats the purpose of separating these responsibilities into distinct layers.