Final answer:
The load balancing method that distributes a workload across multiple computers is Round-robin.
Step-by-step explanation:
The load balancing method that distributes a workload across multiple computers is Round-robin. This algorithm directs each new request to the next available server in a rotating manner. For example, if there are three servers labeled A, B, and C, the first request goes to server A, the second request goes to server B, and the third request goes to server C, and then it starts again from server A.
This method ensures that each server gets an equal share of the workload, balancing the traffic between them. It is a commonly used and straightforward method for load balancing.