What value will the highest variable contain when the loop finishes?

Look at the following code sample:

```
int[] numbers = { 1, 2, 3, 4, 5 };

int highest = numbers[0];

for (int index = 1; index < numbers.Length; index++)
{
if (numbers[index] > highest)
{
highest = numbers[index];
}
}

```

a. 1
b. 3
c. 5
d. 15



c. 5

Computer Science & Information Technology

You might also like to view...

What command is used to release a current IP address on a computer?

What will be an ideal response?

Computer Science & Information Technology

Display the slide masters by clicking the Edit tab on the Ribbon, and then clicking the Slide Layout button.

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

Computer Science & Information Technology

Fonts can be altered further with all of these EXCEPT HTML and CSS ____.

A. backgrounds B. styles C. attributes D. values

Computer Science & Information Technology

A network administrator is setting up a WAP and wants to disable the ability of gaining access from the parking garage. Which of the following should the network administrator review?

A. Signal strength B. SSID name C. WPA2 encryption D. WEP encryption

Computer Science & Information Technology