Question 6 (1 point) Listen If the rest of the sketch is correct, what will we see in the serial monitor when the follow
Posted: Mon May 16, 2022 6:34 am
Question 6 (1 point) Listen If the rest of the sketch is correct, what will we see in the serial monitor when the following portion is executed (assuming there is no outer loop)? int x = 5; int y = 2; do { y = y + x; Serial.print(y); Serial.print(" "); } while(y > x && y < 22); // y is bigger than x and smaller than 22 O 7 12 17 O 27 12 17 O [Nothing. The program never enters this loop.] O 712 17 22