Assume that an array of integers named salarySteps that contains exactly five elements has been declared.
LANGUAGE: JAVA
CHALLENGE:
Assume that an array of integers named salarySteps that contains exactly five elements has been declared.
Write a statement that assigns the value 160000 to the last element of the array salarySteps.
SOLUTION:
salarySteps [4] = 160000;
Posted in Java, Learn To Code