Font size
WorksheetsBasic Final Quiz
Total questions: 50
Worksheet time: 39mins
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.
What does LDR stand for?
Long distance relationship
Light driven receptor
Light dependent resistor
Light driven resistor
___________ are pre built circuit boards that fit on top of Android.
Sensor
Breadboard
Data Types
Sheilds
What does IDE stand for?
Integrated Development Environment
In Deep Environment
Internal Deep Escape
IDE
A program written with the IDE for Arduino is called _________
IDE source
Sketch
Cryptography
Source code
Ultrasonic waves are a form of _______ waves
sound
ocean
radio
seismic
An ultrasonic sensor is a device that can measure the ________ to an object by sending out _________ waves.
density / echo
path / seismic
elevation / sonic
distance / sound
The speed of sound is _________ m/s
100
340
250
255
" void setup() " program will...
run once
run repeatedly
The if-statement is used to
Switch between different cases.
To repeat section of code for number of times.
Check a condition and perform an operation
Method to control the speed of DC motors.
Which statement of the following has the meaning of "if Variable X is equal to 0
If (X = 0 )
If (X == 0 )
If (variable X = 0 )
If (X is equal to 0 )
Which one of these for loops is properly written?
for(int X=0; X<10;X++){}
for(X=0, X<10,X++){}
for(int X>0; X=10;X++){}
for(int X==0; X<10;X++){}
analogWrite(pin , val) set the PWM duty cycle as a
Scale of 0 – 255
Scale of 0 – 1023
Scale of 0 – 5
Scale Only 3.3 V
What is the result of the following operation:
int X = 5;
int Y = 10;
int Z = 0;
Z = Y + X;
Z--;
21
20
14
15
What is the use of the LDR Sensor?
Monitors Motion
Monitors air pressure
Monitors Light Intensity
Monitors heartbeat
Which of the following is the Verify icon?
What do you call that symbol?
resistance
current
microfarad
ohm
This is used to include outside libraries in your sketch. This gives the programmer access to a large group of standard C libraries (groups of pre-made functions), and also libraries written especially for Arduino.
#include
#define
#library
#find
This allows the programmer to give a name to a constant value before the program is compiled. It does not take up any program memory space on the chip. The compiler will replace references to these constants with the defined value at compile time.
#include
#define
#library
#find
This is used only in function declarations. It indicates that the function is expected to return no information to the function from which it was called.
boolean
float
char
void
This is a data type that takes up 1 byte of memory that stores a character value. These literals are written in single quotes, like this: 'A' (for multiple of these - strings - use double quotes: "ABC").
boolean
float
char
void
These numbers have a decimal point. They are often used to approximate analog and continuous values because they have greater resolution than integers.
boolean
float
char
void
This holds one of two values, true or false.
boolean
float
char
void
In which of the following does electricity flow?
Open circuit
Closed circuit
None of the options are correct
What are they called?
Wire
Jumper Cable MM
Jumper Cable MF
Jumper Cable FF
Jumper Cable
In BO Motor, BO stands for ___________
Battery Operation
Battery Optimized
Battery Operated
Battery Optimization
What does " ln " means in Serail.println?
Print the data
Print the data in next line
Print the data after a time of ln seconds
None of the above
What component's symbol is this?
(a)
What does LED stand for?
(a)
What is cathode?
Negative
Neutral
Positive
Which leg is cathode?
(a)
The___________ stores an information that can be reused later in the program.
loop
if statement
variable
else statement
Will the light turn on?
Yes
No
Spot the Error in this Circuit
Backward LED
Resistor in wrong breadboard spot
Incomplete circuit. No grounding wire
No errors. This circuit will work!
What is the correct file extension on an Arduino Library?
.cc
.ino
.lib
.h
What is the file extension of a Sketch file?
.c++
.cc
.ino
.exe
