Zusammenfassung der Ressource
Frage 1
Frage
In which scenario is a single-server design most appropriate?
Antworten
-
For highly critical commercial applications
-
For large-scale systems with significant traffic
-
For small, low-priority tools or personal websites
-
For applications requiring high availability
Frage 2
Frage
What is a key drawback of a single-server design for commercial systems?
Frage 3
Frage
What does vertical scaling involve?
Antworten
-
Adding more servers to distribute the load
-
Increasing the capacity of an existing server
-
Implementing a load balancer to manage traffic
-
Dividing a database into multiple shards
Frage 4
Frage
What is a limitation of vertical scaling?
Antworten
-
It requires complex database partitioning.
-
It is limited by the maximum capacity of a single server.
-
It cannot handle stateless requests efficiently.
-
It increases the number of servers to maintain.
Frage 5
Frage
How does horizontal scaling differ from vertical scaling?
Antworten
-
Horizontal scaling increases the size of servers, while vertical scaling adds more servers.
-
Horizontal scaling involves adding more servers, while vertical scaling increases the size of existing servers.
-
Horizontal scaling reduces server maintenance, while vertical scaling increases it.
-
Horizontal scaling focuses on database optimization, while vertical scaling focuses on application layers.
Frage 6
Frage
What component is essential for horizontal scaling to distribute traffic across servers?
Antworten
-
Database replicas
-
A load balancer
-
A central storage system
-
An additional web server
Frage 7
Frage
Why must web servers in a horizontally scaled system be stateless?
Antworten
-
To ensure they can share storage efficiently
-
To allow any server to handle any user request independently
-
To improve CPU utilization across the system
-
To minimize database load during high traffic
Frage 8
Frage
What is a primary advantage of horizontal scaling over vertical scaling?
Antworten
-
It reduces system complexity.
-
It eliminates single points of failure.
-
It is more cost-effective for small-scale systems.
-
It requires fewer machines to maintain.
Frage 9
Frage
In which scenario is vertical scaling likely sufficient?
Antworten
-
A globally distributed e-commerce platform
-
A personal website with low traffic
-
A real-time video streaming service
-
A high-frequency financial trading application
Frage 10
Frage
What is a downside of horizontal scaling?
Antworten
-
It limits the ability to add more servers.
-
It increases the likelihood of server failure.
-
It introduces more components to maintain.
-
It restricts redundancy in the system.
Frage 11
Frage
What design principle should guide the choice of system architecture?
Antworten
-
Prioritize redundancy regardless of cost.
-
Build the simplest architecture that meets the requirements.
-
Always opt for horizontal scaling, even for small systems.
-
Avoid using load balancers to minimize complexity.