Font size
WorksheetsQuiz Embedded System
Total questions: 50
Worksheet time: 50mins
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
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
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
What does IDE stand for?
Integrated Development Environment
In Deep Environment
Internal Deep Escape
IDE
A program written with the IDE for Arduino is calle
Editor
Console
Sketch
IDE error
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
Which command is called repetitively over and over again as long as the Arduino has power.
loop ( )
(output)
setup ( )
(input)
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
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
Why Use Breadboards / Protoboards?
They are economic
They are solderless
They are Integrated circuits (ICs)
int LED1= 4;
What statement is this?
Void Loop
Void Setup
Declaration
C language
int LED1=4;
What is 'int= integer' used for?
Alphabets
Capital and small letters
Combination of Numbers and Alphabets
Numbers
int LED2=8;
What is number eight is referring in the coding above?
Analog Pin
5V
Ground
Digital Pin
LED is setup-up to blink. LEDs is an
Output
Input
pinMode
digitalWrite
digitalWrite (LED1,HIGH);
What does it means by HIGH?
Blinking
Switch OFF
Switch ON
Sequence
delay (1000);
1000 in delay is equivalent to how many second?
10s
2s
60s
1s
digitalWrite (LED1, HIGH);
delay(1000);
digitalWrite (LED1, LOW);
What does the program do?
LED Switch Off at the beginning, wait for 60s and then switch ON.
LED Switch ON at the beginning, wait for 10s and then Switch OFF.
LED Switch ON at the beginning, wait for 1s and then switch ON.
LED Switch ON at the beginning, wait for 1s and then switch OFF.
int Led1=4;
void setup(){
digitalWrite (LED1, High);
}
Find the errors (all possible answer)?
LED 1
DigitalWrite
HIGH
Void Setup
I use temperature sensor to read the room temperature. How do I write Temperature Sensor Set-up.
void setup(){
_______________________;
}
PinMode (Tsensor, Output);
pinMode (Tsensor, OUTPUT);
PinMode (Tsensor, Input);
pinMode (Tsensor, INPUT);
A potentiometer is a
Directional switch
Directional resistor
Sensor
Variable resistor
None of the above
Photo resistors operate by
Reducing resistance when less light is visible
Increasing resistance when less light is visible
Activates when motion is present
All of the above
This part is called a
Piezo buzzer
Push button
Potentiometer
None of the Above
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
Select all the output components
Select all the input components
