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