for loops are best suited for which of the following purposes?
Each time through a loop is called a(n)
Which of the following is the right order of the parts of a for loop?
Which of the following counts through the numbers 0 to 9 inclusive?
Given the line of code:
i=i+1;
What can be said?
Which of the following has the same effect as i++ ?
Why is it acceptable to use i as a counter variable?
while loops are best suited for which of the following purposes?
Each time through a while loop is called a(n)
Which of the following is the right template for a header line in a while loop?
Which of the following is the right template for a header line in a while loop?
Which of the following counts through the numbers 0 to 9 inclusive?
What is wrong with the following code?
int i=0; while( i<100 ) {
Serial.println(i);
i++;
}
Serial.print("After the loop, i’s valuse is:");
Serial.println(i);