NEW
Font size
S
M
L
XL
WorksheetsTinkercad - Arduino
Total questions: 10
Worksheet time: 10mins
Name
Class
Date
1.
Plastic line numbered from 0-13 and they give you access to the pins on the main chip. The pins act as inputs and read voltage or output applying voltage.
a)
GDN pin
b)
analog pin
c)
digital pin
d)
reset button
2.
Pin used to ground a circuit. It gives you access to the lowest voltage on the board.
a)
voltage regulator
b)
GND pin
c)
power LED indicator
d)
power port(barrel jack)
3.
A connection that allows you will load code onto your Arduino board.
a)
power port(barrel jack)
b)
voltage regulator
c)
GND pin
d)
USB
4.
What is an LED?
a)
a light
b)
a light emitting diode
c)
a part of a circuit
5.
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
6.
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
7.
Which symbol ends a statement?
a)
Semicolon ;
b)
Parenthesis )
c)
Comma ,
d)
Curly Brace }
8.
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)
9.
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)
10.
If a pin is set to HIGH; it is considered to be ________
a)
On
b)
Off
c)
Once
d)
Twice
Reset
