Given that an array named a with elements of type int has been declared , assign 3 to its first element.
LANGUAGE: JAVA
CHALLENGE:
Given that an array named a with elements of type int has been declared , assign 3 to its first element.
SOLUTION:
a[0] = 3;