WorksheetsARDUINO BOARD
Total questions: 35
Worksheet time: 25mins
Arduino needs an expert programmer
no
yes
Arduino is a closed source platform
no
yes
Arduino has a USB port
yes
no
Which command is called repetitively over and over again as long as the Arduino has power.
loop ( )
(output)
setup ( )
(input)
What are the main elements of the Arduino Environment that make it easy to learn, to use and explain why it is so popular?
The IDE
on-line help
The Arduino Board
All of the above
Arduino can interact with...
buttons, leds
smartphone
sensors
all of the above
This device is called a
Servo
DC motor
Stepper Motor
none of the above
An electrically controlled mechanical switch is called
A Integrated circuit
Potentiometer
Relay
Transistor
None of the above
An Arduino is a programmable circuit board
True
False
Which command is called repetitively over and over again as long as the Arduino has power.
Void loop ( )
output()
Void setup ( )
input()
Which one of the following is not part of the Arduino board
reset button
keyboard
power jack
USB jack
............ used to initialize pin modes
loop function
setup function
Identify the component name in the picture shown above
5 volt- Stepper Motor
Servo Motor
Buzzer
IR Sensor
Identify the component name in the picture shown above
Photoresistor
Diode
Resistor
Capacitor
Arduino Uno has I/O pins
Analog pins
Digital pins
Digital and Analog Pins
none of the above
Street Light Controller we can use
LDR Module
LED
Ultrasonic Sensor
None of the above
___________ are pre built circuit boards that fit on top of Android.
Sensor
Breadboard
Data Types
Sheilds
Which statement when executed provides 5V @ the 13th pin on Arduino UNO board in order to turn ON the LED?
DigitalWrite(13,HIGH);
DigitalWrite(LED,HIGH);
DigitalWrite(13,LOW);
DigitalWrite(LED,LOW);
void setup()
{
pinMode(13, OUTPUT);
}
void loop()
{
digitalWrite(13, HIGH); delay(1000);
digitalWrite(13, LOW); delay(1000);
}
ATmega2560 Board have ___ pins
28
40
64
100
ATmega328p used in Arduino is ___bit Microcontroller
4
8
16
32
In ATmega32x series microcontroller series 32 indicates
Memory in KB
Registers
Flags
SFRs
ATmega328 has ___ single byte registers
8
16
24
32
-------- is NOT AVR microcontroller family
TinyAVR
MegaAVR
Xmega
SuperMega
Following is the feature of AVR Microcontroller
PWM ouptput
Watchdog timer
Brownout detection
All the above
ISP stands for
In System Programming
Internal Static Programming
Inter State Programming
None of the above
JTAG stands for
Joint Test Action Group
Joint Telecom Area Group
Java Test Activity Group
Joint Technology Advancement Group
Arduino software can run on ______ Operating System
Windows
Linux
Macintosh
all the above
Arduino sketches saved in computer with the extension
.ino
.txt
.ard
.avr
