Introduction to Arduino Quiz

medium 10 Questions
Back
Question 1 of 10

What is the primary programming language used to program Arduino boards?

Arduino uses a simplified version of C/C++.
Question 2 of 10

Which of the following is NOT a common Arduino board?

Raspberry Pi is a different type of microcontroller, not an Arduino.
Question 3 of 10

What does IDE stand for in the context of Arduino programming?

The Arduino IDE is where you write, compile, and upload code.
Question 4 of 10

Which pin on an Arduino Uno is used for analog input?

Analog pins (A0-A5) read analog voltage levels.
Question 5 of 10

What is the purpose of the 'setup()' function in an Arduino sketch?

setup() runs only once at the beginning to initialize the hardware.
Question 6 of 10

What is the purpose of the 'loop()' function in an Arduino sketch?

loop() executes repeatedly, creating the main program behavior.
Question 7 of 10

Which function is used to send data to the serial monitor?

Serial.print() sends text or variable values to the serial monitor.
Question 8 of 10

What does PWM stand for in the context of Arduino?

PWM is used for analog output simulation by varying the duty cycle.
Question 9 of 10

Which function is used to set a digital pin to output mode?

pinMode() sets a pin's direction as INPUT or OUTPUT.
Question 10 of 10

What does a resistor typically do in an Arduino circuit?

Resistors oppose the flow of current, protecting components.
1 / 10