NEW
Font size
S
M
L
XL
WorksheetsArduino Review Quiz
Total questions: 21
Worksheet time: 13mins
Name
Class
Date
1.
Identify this component
a)
Arduino Uno board
b)
Raspberry Pi
c)
Breadboard / Protoboard
d)
White Plastic Board
2.
A program written with the IDE for Arduino is called a(n) ________
a)
Editor
b)
Console
c)
Sketch
d)
IDE error
3.
What is an LED?
a)
a light
b)
a light emitting diode
c)
a part of a circuit
4.
Why is a resistor important?
a)
It isn't important
b)
It increases the power of a circuit
c)
It controls the flow of electricity by lessening it to a certain amount
5.
A potentiometer is also known as a ___________________
a)
knob
b)
button
c)
variable resistor
6.
In the RGB LED, the R stands for ___________
a)
Ready
b)
Red
c)
Read only
7.
The resistor that changes resistance based on how much light it receives is called a _________ . resistor.
a)
photo
b)
potentiometer
c)
LED
d)
light
8.
What does the LCD stand for?
a)
Light Creating Diode
b)
Load Creates Data
c)
Liquid Crystal Display
9.
How long is the LED on?
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
a)
1000 seconds
b)
100 seconds
c)
1 second
d)
100 milliseconds
10.
Which symbol ends a statement?
a)
Semicolon ;
b)
Parenthesis )
c)
Comma ,
d)
Curly Brace }
11.
What does pressing the check-mark do when working with your code?
a)
Saves your work.
b)
Downloads your code onto the arduino board.
c)
Checks your code for mistakes.
d)
Checks to see if the arduino is connected to the computer.
12.
Which pin is the jumper wire connected to?
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
a)
13
b)
12
c)
100
d)
digital pin
13.
A function is a series of programming statements that can be called by name. Which command is called repetitively over and over again as long as the Arduino has power.
a)
loop()
b)
setup()
c)
(output)
d)
(input)
14.
A function is a series of programming statements that can be called by name. Which command is called once when the program starts:
a)
loop()
b)
setup()
c)
(output)
d)
(input)
15.
Before your program “code” can be sent to the board, it needs to be converted into instructions that the board understands. This process is called...
a)
Stop
b)
Compile
c)
Create Sketch
d)
Serial Monitor
16.
This part is called a
a)
Piezo buzzer
b)
Push button
c)
Potentiometer
d)
None of the Above
17.
If a pin is set to HIGH; it is considered to be ________
a)
On
b)
Off
c)
Once
d)
Twice
18.
Writes a HIGH or a LOW value to a digital pin.
a)
digitalWhat
b)
digitalWet
c)
digitalWrong
d)
digitalWrite
19.
The
pinMode() function configures a pin as either ______or In ________a)
High or Low
b)
Input or Output
c)
Input or Off
d)
Inside or Outside
20.
All programming in a void setup or void loop must take place between
a)
{ } Curly Braces
b)
() Brackets
c)
\\ Forwardslashs
d)
// Backslashs
21.
The programming language used by the Arduino microprocessor is _________?
a)
Java
b)
Python
c)
C++
d)
PHP
Reset
