WEEK 5 2024 Flashcards
Different processing logic applied to same IoT networked devices give rise to ?
Semantic Conflicts
(T/F) Interoperability is a characteristic of a product/system
True
Interoperability is important so that
Neither (a) or (b)
Neither Physical objects remain isolated nor Network remain isolated
(T/F) Use of different programming language is an example of heterogeneity in IoT. This brings need for interoperability
True
(T/F) Interoperability between devices and device users in terms of message formats is called syntactic interoperability
True
UMB in IoT Interoperability
Universal Middleware Bridge
NULL Pin in the DHT - 11sensor
Neither (a) nor (b)
Arduino MEGA microcontroller board is also known as
None of these
Provides high-precision rotary motion of 0 to 180 degrees
Servo Motor
int servoPin = 12;
O/P=?
Declares pin for connecting servo motor
Delay(1000) in Arduino sketch means ?
It introduces a delay of 1 second
(T/F) Additional Hardware is required to load a program into the Arduino Uno board using a computer
False
Number of PWM pins in Arduino Uno
None of these
int r=4;
int g=5;
void setup(){
Serial.begin(9600);
pinMode(r,INPUT);
pinMode(g,??);
}
void loop()
{
// Block of code
}
“??” is replaced with?
OUTPUT
(T/F) The “Verify” option in the Arduino IDE checks the code for compilation errors
True