Assume that an ArrayList named a containing exactly 5 Integers has been declared and initialized.

LANGUAGE: JAVA

CHALLENGE:

Assume that an ArrayList named a containing exactly 5 Integers has been declared and initialized.

Write a single statement that adds 10 to the value stored in the first element of the array.

SOLUTION:

a.set(0,a.get(0)+10);