int [ ,  ] score = {{88, 66, 76, 92, 95} {67, 88, 45, 99, 80}};int total = 0;foreach (int val in score)              total += val;
Using the code shown above, what is added to total during the first iteration?

A. 0
B. 88
C. 86, 66, 76, 92 and 95
D. unknown, because val is not initialized

Answer: B

Computer Science & Information Technology

You might also like to view...

Finds any value ending with "a"

What will be an ideal response?

Computer Science & Information Technology

Each ________ and control on a form has properties

Fill in the blank(s) with correct word

Computer Science & Information Technology