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/01/24 10:49] – Agrisnik | en:iot-open:programming_fundamentals_rtu:looping [2020/07/20 09:00] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 80: | Line 80: | ||
| </ | </ | ||
| + | **Check yourself** | ||
| + | |||
| + | 1. What loop where the condition is checked after the loop body is executed? | ||
| + | |||
| + | 2. How long will the operators in the body of the loop will operate (while (x < 100))? | ||
| + | |||
| + | 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 | ||