2027) Internet of Things (IoT) and Infrastructure Quiz Bank|
Questions and Verified Answers| 100% Correct| A Grade
Q. What is the internet of things?
ANSWERS
IoT is a system of sensors connected with communication modules to provide knowledge.
Q. What is the concept of internet of things?
ANSWERS
the idea that everything / every device could be given an ip address and put on the internet. Ex. using your
phone to turn on your microwave
Q. What are the three components of Internet of Things ?
ANSWERS
Sensor nodes
Communication module
Data analytics component
Q. what is a sensor?
ANSWERS
A sensor is a converter that measures a physical quantity and converts it into a electrical signal
Q. What are 5 examples of wireless communication standards?
ANSWERS
Satellite
Wireless USB/ Ultrawideband
Wifi
Wimax
Bluetooth
3G
NFC
ZigBee
GSM
1
,Q. What are the three levels of data analytics?
ANSWERS
data, knowledge, and feedback.
Q. *What are the design goals of the internet of things?
ANSWERS
Mobility
Wireless
Robustness
Intelligence
Energy efficiency
Q. what is a micro-controller?
ANSWERS
A small integrated circuit that can be programmed in a variety of different computer languages.
Q. What does GPIO stand for?
ANSWERS
General Purpose Input/Output
Q. What does IDE stand for?
ANSWERS
Integrated development environment; application with tools that are necessary for developing software
Q. 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 _______________.
ANSWERS
compiling
2
, Q. What is the code must be included in order to read the analog voltage from the potentiometer?
ANSWERS
int sensorValue = analogRead(A0);
Q. What is the meaning of the code Serial.println(voltage) ?
ANSWERS
This code prints the voltage to the serial window
Q. What are 3 different types of sensors?
ANSWERS
resistive sensors
inductive sensors
capacitive sensors
Q. What is right about resistive transducer?
ANSWERS
From measuring resistance, we can measure the non-electrical parameters
Q. What is a stepper motor?
ANSWERS
A stepper motor is a very precise motor that you can instruct to rotate one step at a time. They are used in CNC
machines, 3D printers and in robotics
Q. What is the line of code controlling the speed of the stepper motor?
ANSWERS
delay(3);
3