Q1. What are the two main sections of an Arduino program?
- Answer: setup() (runs once at the beginning) and loop() (runs repeatedly).
Q2. What coding statement helps us make decisions in Arduino?
- Answer: The if statement (and if–else) is used to make decisions.