Which of the following is best described as software that prioritizes and schedules requests and then distributes them to servers based on each server's current load and processing power.

A. server pooling software
B. traffic distribution filter
C. priority server farm
D. load-balancing software


Answer: D

Computer Science & Information Technology

You might also like to view...

Suppose you enter 34.3, the ENTER key, 57.8, the ENTER key. Analyze the following code.

``` 1 Scanner input = new Scanner(System.in); 2 double v1 = input.nextDouble(); 3 double v2 = input.nextDouble(); 4 String line = input.nextLine(); ``` a. After line 2 is executed, v1 is 34.3. b. After line 3 is executed, v2 is 57.8. c. After line 4 is executed, line contains an empty string. d. After line 4 is executed, line is null. e. After line 4 is executed, line contains character "\n".

Computer Science & Information Technology

The developing, transferring, fusing, and cleaning steps of the laser printing process use the printer components that undergo the most wear.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

You work in the Accounting department and have been using a network drive to post Excel workbook files to your file server as you complete them. When you attempt to save a workbook file to the drive, you see the error message: "You do not have access to the folder 'J:\'. See your administrator for access to this folder." What should you do first?

a. Ask your network administrator to give you permission to access the folder. b. Check File Explorer to verify that you can connect to the network. c. Save the workbook file to your hard drive. d. Using File Explorer, remap the network drive.

Computer Science & Information Technology

Consider the following function to calculate the nth Fibonacci number:long fib (long num){    if (num == 0 || num == 1)        return num;    return (fib (num - 1) + fib (num - 2));}What line of code represents the general case?

A. long fib (long num) B. if (num == 0 || num == 1) C. return num; D. return (fib (num - 1) + fib (num - 2));

Computer Science & Information Technology