How many times in total will the body of the interior for loop execute?
int sum = 0; for (int i = 0; i < 3; i++) { for (int j = 1; j <= 5; j++) { sum = sum + j; } }
Remember each time int i increases, the internal loop will have iterated 5 times