Font size
WorksheetsElec 3- Professional Elective 3 Formative Assessment
Total questions: 80
Worksheet time: 1hrs 15mins
Where was Arduino founded?
Canada
Italy
Spain
United States of America
Which of the following is not considered as part of the Arduino hardware?
Arduino Board
Sensor
Shields
None of the above
How many GND pins are there in a power pins of an Arduino UNO board?
1
2
3
4
What tool is mainly used for testing projects and the Programmer section in this panel is used for burning a bootloader to the new microcontroller?
Help
Scratch
Tools
Verify
It is a separate pop-up window that acts as an independent terminal and plays a vital role for sending and receiving the Serial Data.
Serial Boarder
Serial Chart
Serial Monitor
Serial Print
What will happen to RX & TX LEDS once a code is uploaded on the board?
The RX LED will blink.
The TX LED will blink.
Both TX & RX LEDs will blink.
Nothing will happen to both LEDs.
Which component library in Tinkercad can you find resistor, two types of capacitors, two types of diodes and an inductor?
General
Instruments
Input
Output
He took the first baby step in the direction towards creating software tools similar to Processing.
Hernando Barragan
Hernandez Bazi
Hernando Belissimo
Hernandez Bellazo
What function for coding is missing in Tinkercad programming?
Copy and Paste
Select All
Undo/Redo
All of the above
What does ICSP stand for in Arduino Board?
Interface Circuit Serial Programming
Inter-Circuit Serial Programming
In-Circuit Serial Programming
Intra-Circuit Serial Programming
Which component of Arduino board has a 14 pins?
Analog Pins
Digital Pins
Microcontroller
Power Pins
What is Arduino?
A company for selling microcontrollers
A software used to program microcontrollers
An open-source electronics prototyping platform based on flexible, easy-to-use hardware and software
Which board is first to use microcontroller with in build USB?
LilyPad
RedBoard
UNO
Leonardo
How many types of arduinos do we have?
5
6
8
3
Which command is called repetitively over and over again as long as the Arduino has power.
loop ( )
(output)
setup ( )
(input)
Before your program “code” can be sent to the board, it needs to be converted into instructions that the board understands. This process is called...
Stop
Compile
Create Sketch
Serial Monitor
A program written with the IDE for Arduino is calle
Editor
Console
Sketch
IDE error
What does IDE stand for?
Integrated Development Environment
In Deep Environment
Internal Deep Escape
IDE
Identify this component
Arduino Uno board
Raspberry Pi
Breadboard / Protoboard
White Plastic Board
Identify this component
Uno Cards
Raspberry Pi
Arduino Duo board
Arduino Uno board
What does GPIO stand for?
General Purpose Inner Outer Propeller
General Purpose Input Output Pins
General Purpose Interested Old People
General Purpose Input Output Processor
A micro-controller is...
small CPU made of transistors and conductors of heat and sound sensor
portable circuits capable of making other circuits
small computer on a single integrated circuit containing a processor core, memory, and programmable input/output peripherals
small chip made of silver
Arduino can interact with...
buttons, leds
smartphone
sensors
all of the above
Why Use Breadboards / Protoboards?
They are economic
They are solderless
They are Integrated circuits (ICs)
choose the right order
output - process - input
process - output - input
input - process - output
input - output - process
what is the name of this chip
Break
Twix
Embedded
Arduino
What does this button represents?
A. Right Column
B. Upload
C. Render
D. Upright
What does this button represents?
A. Open File
B. Upload
C. Save File
D. Upright
Which of the following is the Serial Monitor icon?
Which of the following is the Verify icon?
Which of the following is the New Sketch icon?
Which of the following is the Open icon?
To pause a system for 2 seconds in Arduino, we use ________ line code.
delay(2);
delay(20);
delay(200);
delay(2000);
What is the output of the snippet code ?
3
4
5
6
How many pin in RGB Led ?
2
3
4
5
Which one is the fastest Led blincking ?
delay(500);
delay(1000);
delay(1500);
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 oneof the following is a user defined function?
loop();
setup();
calculate();
random();
What printed when you run the following code?
Serial.print(5>3);
True
False
0
1
What is the output for the following code?
int x=5;
int y=3;
x+=y;
Serial.print(x+y);
6
8
10
11
A device that can measure the distance to objects
Ultrasonic Sensor
RGB LED
Potintiometer
Temperature Sensor
All of these are input devices Except ______________
Ultrasonic Sensor
Temp Sensor
Potentiometer
LED
What is the name of the Arduino Board in the Image?
(a)
What is the name of the Arduino Board in the Image?
(a)
What is the name of the Arduino Board in the Image?
(a)
This kind of microcontroller board includes analog pins-5, digital I/O pins-14, RST button, an RJ45 connection, crystal oscillator, a power jack, ICSP header, etc. The connection of the Arduino board can be done through the Ethernet shield to the internet.
(a)
Please Identify Arduino Ethernet shield and Motor Driver board from the Images given below.
Rashi Is an engineering student. She decides to make A device that communicates over the internet to send and Receive Information. Her Teacher suggested that she should purchase Raspberry Pi, but instead Rashi purchased An Arduino. Now she is confused. Help her. Can Rashi still make a device that communicates over the internet?
If Yes, then what should be used with Arduino to achieve this.
Yes It is possible. She can use a Flight controller to do so.
No, it is not possible.
Yes, it is possible. She can Purchase a Raspberry Pi and connect it with Arduino.
Yes, It is possible. She can use Arduino shields to do so.
What is the hardware used by Arduino?
Atmega X12
Arduino Development Board
Arduino Environment
Arduino OS
How many times will the shown for loop execute>
0
100
20
50
What output is produced by the following segment of code:
for(int i = 0; i < 10; i++)
cout << i << " ";
0 1 2 3 4 5 6 7 8 9 10
0 1 2 3 4 5 6 7 8 9
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 6 7 8 9
Infinite Loop
What output is produced by the following segment of code:
for(int fun = 20; fun > 1; fun -=3)
cout << fun << " ";
20 17 14 11 8 5 2 -1
20 17 14 11 8 5 2
17 14 11 8 5 2 -1
20 17 14 11 8 5
Infinite Loop
What output is produced by the following segment of code:
int start = 5;
int end = 20;
for(; start <= end; start +=2)
cout << start << " ";
5 7 9 11 13 15 17 19 21
7 9 11 13 15 17 19 20
7 9 11 13 15 17 19 21
5 7 9 11 13 15 17 19
Infinite Loop
The function returns a value to the - variable blinks, and then will blink the LED blinks times with a delay of.......milliseconds. The for before repeating.
5; 2
5000; 2000
500; 2
5; 200
This sketch starts with the variable a set to 0. It then adds 1 to the value of a (which starts at 0), waits 1 second (delay1000)), and then repeats the processuntilahasavalueof10. Onceaisequalto10, the comparison in the while statement is........; therefore, the Arduino will continue on with the sketch after the while loop brackets.
false
true
digitalWrite(13,LOW) means?
execute pin 13; off
It is used to end a statement
{}
;
()
//
What is the output of this program
The Arduino robot will run itself, Also, the LED Lights, inside the Arduino will be on 13 times and off 13 times because, of the command HIGH and LOW
The Arduino Lego will run and dance 13 times
The command or program has syntax error
The Arduino Lego will sleep 13 times
It indicate that the Arduino board is receiving power.
(a)
It is a Diode.
(a)
It is part of the Arduino board what is the name of this?
(a)
Give the specific name of this part of the Arduino Board.
(a)
Give the specific name of this part of the Arduino Board.
(a)
Give the specific name of this part of the Arduino Board.
(a)
Give the specific name of this part of the Arduino Board.
(a)
Give the specific name of this part of the Arduino Board.
(a)
Give the specific name of this part of the Arduino Board.
(a)
Give the specific name of this part of the Arduino Board.
(a)
Give the specific name of this part of the Arduino Board.
(a)
Give the specific name of this part of the Arduino Board.
(a)
Give the specific name of this part of the Arduino Board.
(a)
Give the specific name of this part of the Arduino Board.
(a)
Give the specific name of this part of the Arduino Board.
(a)
Give the specific name of this part of the Arduino Board.
(a)
Give the specific name of this part of the Arduino Board.
(a)
Give the specific name of this part of the Arduino Board.
(a)
Give the specific name of this part of the Arduino Board.
(a)
