Arduino Basics
Electricity
Arduino Hardware
Components
Coding & Problem Solving
100

What is an Arduino?

A small, programmable computer. 

100

Where will electricity flow: a closed circuit or an open circuit?

A closed circuit.

100

What is called the "brain" of the Arduino?

The microcontroller.

100

What component protects an LED from getting too much current?

A resistor.

100

Which function runs only once when the Arduino starts?

setup()

200

Name two things an Arduino can control.

LEDs, motors, sensors, displays, buzzers, etc.

200

Voltage is often compared to what?

Pressure

200

Which type of pins are used to read sensors that change gradually, like temperature?

Analog pins.

200

What is a breadboard used for?

Connecting components without soldering.

200

Which function keeps running over and over again?

loop()

300

Why do engineers and inventors like using Arduino?

Because it's cost-efficient, easy to program, and can control electronics.

300

If a circuit is open, what happens to the current?

Current stops flowing.

300

Which type of Arduino pin would you use to read a temperature sensor?

An analog pin.

300

Why are jumper wires important?

They connect different parts of the circuit.

300

What does pinMode() do?

It tells the Arduino whether a pin is an input or an output.

400

A student says an Arduino is only useful for classroom projects. Why is that incorrect?

Arduino is also used in real-world engineering, robotics, research, and prototypes.

400

A copper wire and a rubber tube are both on a table. Which one can electricity travel through more easily?

Copper.

400

A button only has two states: pressed or not pressed. Should it use a digital pin or an analog pin?

Digital pin.

400

Why is it useful that breadboards can be reused?

You can build and change circuits without permanently attaching parts.

400

A student wants an LED to blink forever. Should the blinking code go in setup() or loop()?

loop() 

500

 You want an Arduino to automatically turn on a light when your room gets dark. What kind of sensor would you need, and what output device would the Arduino control?

A light sensor (photoresistor/LDR) and an LED (or lamp).

500

You connect an LED to a battery but forget one wire back to the battery. Why doesn't the LED light up?


The circuit isn't complete.

500

Why would you use a PWM (~) pin instead of a regular digital pin for an LED?

Because PWM can make the LED appear dimmer or brighter.

500

You accidentally place two component legs in the same connected row of a breadboard when they shouldn't be. What problem could happen?

A short circuit or incorrect circuit connection.

500

A student accidentally puts all of their blinking code inside setup(). What will probably happen?

The code will only run once when the Arduino starts.

M
e
n
u