wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Robotics 2019

Total questions: 12

Worksheet time: 4mins

Name
Class
Date
1.

LED

a)

Light Exposing Diode

b)

Light Exposing Device

c)

Light Emitting Device

d)

Light Emitting Diode

2.

An electrical component that opposes or limits the passage of electricity. The amount of ohms offered is displayed as color-bands using a color code.

a)

Capacitor

b)

Resistor

c)

Inductor

d)

Transistor

3.

Each line of code in Arduino requires a ____ at the end.

a)

;

b)

:

c)

{ }

d)

//

4.

The longer lead of a light-emitting diode is known as what?

a)

Longpin

b)

The Anode (positive)

c)

The Cathode (negative)

5.

The schematic symbol represents...

a)

a capacitor

b)

a transistor

c)

a light-emitting diode

d)

a resistor

6.
digitalWrite(13, LOW); turns the light 
a)
on
b)
off
c)
dim
7.

How long is the LED on?


digitalWrite(13, HIGH);

delay(1000);

digitalWrite(13, LOW);

delay(500);

a)

1000 seconds

b)

500 seconds

c)

1 second

d)

100 milliseconds

8.
Which pin is the jumper wire connected to?

digitalWrite(13, HIGH); 
 
delay(1000);   
digitalWrite(13, LOW); 
 
 delay(1000); 
a)
13
b)
12
c)
100
d)
digital pin
9.

The entire code must end with

a)

Semicolon ;

b)

Parenthesis )

c)

Comma ,

d)

Bracket }

10.
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.
11.

The pinMode() function configures a pin as either ______or In ________

a)

HIGH or LOW

b)

INPUT or OUTPUT

c)

ON or OFF

d)

Black or Red

12.
A 220 ohm resistor is used to protect the _____from too much current.
a)
Battery
b)
Servos
c)
Circuit Board
d)
LED