Question 4 If the loop control variable of a while loop is not modified within the body of the loop, the loop will defau
Posted: Tue Jul 05, 2022 10:26 am
Question 4 If the loop control variable of a while loop is not modified within the body of the loop, the loop will default to incrementing the value by +1 on each iteration. A True B) False Question 5 Given the while loop below, how many times will the loop body execute? counter = 10; } while (counter < 10) { counter = counter 1; A) 0 times B) 1 time C) 9 times 5 Points D) 10 times 5 Points