Question 4 If the loop control variable of a while loop is not modified within the body of the loop, the loop will defau
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Question 4 If the loop control variable of a while loop is not modified within the body of the loop, the loop will defau
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