Below are some questions from the previous chapters that would help you practice for the SCJP examination.
All the best !!!
Questions:
Question 1.
Given:
public static void main(String[] args) {
// CODE HERE
for (int i = 0; i <= 10; i++) {
List < Integer > row = new ArrayList < Integer > ();
for (int j = 0; j <= 10; j++)
row.add(i * j);
table.add(row);
}
for (List <