This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| en:iot-open:programming_fundamentals_rtu:looping [2018/05/15 00:30] – kap2fox | en:iot-open:programming_fundamentals_rtu:looping [2020/07/20 09:00] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 81: | Line 81: | ||
| **Check yourself** | **Check yourself** | ||
| + | |||
| 1. What loop where the condition is checked after the loop body is executed? | 1. What loop where the condition is checked after the loop body is executed? | ||
| Line 86: | Line 87: | ||
| 3. What value will be for variable //a// after code executing <code C> int a; for(a = 0; a < 10; a++) {} </ | 3. What value will be for variable //a// after code executing <code C> int a; for(a = 0; a < 10; a++) {} </ | ||
| + | |||
| + | 4. Which of the following operators are not loop(s) in Arduino IDE? | ||
| + | * do while | ||
| + | * while | ||
| + | * repeat until | ||
| + | * for | ||
| + | |||