Final answer:
The value 77 is stored at scores[2] in the array. Arrays start with an index of 0, making scores[2] the third element.
Step-by-step explanation:
The value 77 is stored at scores[2] in the scores array. Arrays in programming usually start with an index of 0. Hence, 83 is at scores[0], 62 is at scores[1], and 77 is at scores[2]. The option that correctly identifies where the value 77 is stored is C) scores[2].