Asked by Sheryl Kambuni on May 11, 2024

verifed

Verified

____ refers to the first grade stored in the grades array.

A) grades[0]
B) grades[1]
C) grades(0)
D) grades{1}

Grades Array

An array structure specifically used to hold numeric values representing grades or scores in an academic context.

First Grade

The initial year of schooling in many education systems, usually attended by children around six to seven years old.

  • Learn how to access, manipulate, and traverse array elements using their indices.
verifed

Verified Answer

YS
Youssr SarhaanMay 17, 2024
Final Answer :
A
Explanation :
In most programming languages, arrays are zero-indexed, meaning the first element is accessed with the index 0. Therefore, `grades[0]` refers to the first grade stored in the `grades` array.