セキュリティ管理者 新しい Web サーバーをインストールしました。管理者は、容量 (または別のサーバーのリソースが枯渇したためにアプリケーション) を増やすためにこれを行いました。管理者が各サーバーの接続数を半分に分割するには、次のどのアルゴリズムを使用する必要がありますか?
正解:B
The administrator should use a round-robin algorithm to split the number of connections on each server in half. Round-robin is a load-balancing algorithm that distributes incoming requests to the available servers one by one in a cyclical order. This helps to evenly distribute the load across all of the servers, ensuring that no single server is overloaded.