// nested loops: // for ( int j = 0 ; j <= 10 ; j += 5 ) { for ( int k = 10 ; k > 0 ; k -= 5 ) { cout << j << " and " << k << endl; } } // predict the output: 0 and 10 j: 5 k: 10 0 and 5 5 and 10 5 and 5 10 and 10 10 and 5 TEST 1: --------------------------- OPEN BOOK, OPEN NOTES, NO COMPUTER, NO CALCULATOR Questions (2 of each): 2 (1) What is the exact output of the given code? (output will be finite!) 2 (2) Convert base 2 to base 10 2 (3) Circle the errors in the given code ---> then fix the errors (in the margins...) Error types include compiler errors, as well as runtime errors 2 (4) Write some code to do _______________. 10am-11:50am 8 questions