Complete the code to identify the main component responsible for storing user posts in a social media system.
The component that stores user posts is called the [1].The database is the main component that stores user posts persistently in a social media system.
Complete the code to select the component that manages user requests and distributes them evenly.
The [1] ensures user requests are balanced across servers.The load balancer distributes incoming user requests evenly to prevent any server from being overloaded.
Fix the error in the description of the component that speeds up data access by storing frequently used data.
The [1] stores frequently accessed data to reduce database load.Cache stores frequently accessed data temporarily to speed up access and reduce load on the database.
Fill both blanks to complete the description of how social media systems handle user-generated content and notifications.
User posts are stored in the [1], and notifications are managed by the [2].
User posts are saved permanently in the database, while message queues handle notifications asynchronously to improve performance.
Fill all three blanks to complete the explanation of key components in a social media system's architecture.
The [1] routes requests, the [2] stores data, and the [3] speeds up data retrieval.
The API Gateway routes user requests, the database stores data permanently, and the cache speeds up data retrieval by storing frequently accessed data.
