An ArrayList of Integer s named a has been declared with 12 elements . The integer variable k holds a value between 0 and 6. Assign 9 to the element just after the element at k.

LANGUAGE: JAVA

CHALLENGE:

An ArrayList of Integer s named a has been declared with 12 elements . The integer variable k holds a value between 0 and 6. Assign 9 to the element just after the element at k.

SOLUTION:

a.set(k + 1, 9);