Font size
WorksheetsEYW arduino circuit check
Total questions: 34
Worksheet time: 20mins
Identify this component
Uno Cards
Raspberry Pi
Arduino Duo board
Arduino Uno board
Identify this component
Arduino Uno board
Raspberry Pi
Breadboard / Protoboard
White Plastic Board
A potentiometer (or knob) is also known as a variable resistor because:
you can change the position and put it wherever you want
it always has the same amount of resistance
when you turn it, it changes the resistance of the circuit (an example is a volume dial)
What is an electrical circuit?
An loop with a power source, load and conductive path
An arduino board
A circuit that has leds, potentiometers, positive and negative volts.
This part is called a
Piezo buzzer
Push button
Potentiometer
None of the Above
The following line of code, means ________
pinMode(12, OUTPUT);
Make the device in pin 13 set to ON state.
Set the device in pin 12 as input.
Set the device in pin 12 as output.
Make the device in pin 12 set to Off state.
Which of the following consider as output devices? (Hint: two)
Button
LED
Humidity
Motor
Which of the following consider as input sensor? (Hint: three)
Button
Ultrasonic Distance
LED
Temperature
To pause a system for 2 seconds in Arduino, we use ________ line code.
delay(2);
delay(20);
delay(200);
delay(2000);
How to define a Led connected to pin 13 in Arduino?
Pinmode(13,INPUT);
pinMode(13,INPUT);
Pinmode(13,OUTPUT);
pinMode(13,OUTPUT);
Which command is called repetitively over and over again as long as the Arduino has power.
loop ( )
(output)
setup ( )
(input)
Which function runs only one time?
loop();
setup();
calculate();
random();
An LED is an:
output
input
An servo motor is
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
void setup()
{
pinMode(13, OUTPUT);
}
void loop()
{
digitalWrite(13, HIGH); delay(1000);
digitalWrite(13, LOW); delay(1000);
}
void setup()
{
pinMode(13, OUTPUT);
}
void loop()
{
digitalWrite(13, HIGH); delay(1000);
digitalWrite(13, LOW); delay(1000);
}
void setup()
{
pinMode(13, OUTPUT);
}
void loop()
{
digitalWrite(13, HIGH); delay(1000);
digitalWrite(13, LOW); delay(1000);
}
void setup()
{
pinMode(13, OUTPUT);
}
void loop()
{
digitalWrite(13, HIGH); delay(1000);
digitalWrite(13, LOW); delay(1000);
}
What is this component?
Resistor
Jumper wire
Microcontroller
USB Cable
What is this component?
LED
LCD
Microcontroller
Resistor
What is this component?
Potentiometer
Ultrasonic Range Finger
Resistor
Microcontroller
