WEEK 5 2024 Flashcards

1
Q

Different processing logic applied to same IoT networked devices give rise to ?

A

Semantic Conflicts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

(T/F) Interoperability is a characteristic of a product/system

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Interoperability is important so that

A

Neither (a) or (b)
Neither Physical objects remain isolated nor Network remain isolated

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

(T/F) Use of different programming language is an example of heterogeneity in IoT. This brings need for interoperability

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

(T/F) Interoperability between devices and device users in terms of message formats is called syntactic interoperability

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

UMB in IoT Interoperability

A

Universal Middleware Bridge

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

NULL Pin in the DHT - 11sensor

A

Neither (a) nor (b)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Arduino MEGA microcontroller board is also known as

A

None of these

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Provides high-precision rotary motion of 0 to 180 degrees

A

Servo Motor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

int servoPin = 12;
O/P=?

A

Declares pin for connecting servo motor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Delay(1000) in Arduino sketch means ?

A

It introduces a delay of 1 second

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

(T/F) Additional Hardware is required to load a program into the Arduino Uno board using a computer

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Number of PWM pins in Arduino Uno

A

None of these

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

int r=4;
int g=5;
void setup(){
Serial.begin(9600);
pinMode(r,INPUT);
pinMode(g,??);
}
void loop()
{
// Block of code
}
“??” is replaced with?

A

OUTPUT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

(T/F) The “Verify” option in the Arduino IDE checks the code for compilation errors

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly