Answer:
The answer is "salarySteps[0] = 30000;"
Explanation:
In the question is it define that salarySteps[] is an array variable that accepts an integer value because it datatype is int. In this array five elements are already declared so, the code for assign value that is "30000" in array first elements is "salarySteps[0] =30000;".
- array index starts with 0 and ends with n-1 so, we use array[0] for assign value.
- It is a collection of homogeneous elements that means it collects only one type of value at a time like a number, characters, and string, etc.