wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

IOT Introduction Quiz

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

The IPv6 notation uses ___________________ values.

a)

Roman

b)

Hexadecimal

c)

Both (a) and (b

d)

None of these

2.

A _____________ detects (senses) changes in the ambient conditions or in the state of

another device or a system, and forwards or processes this information in a certain manner.

a)

Sensor

b)

Actuator

c)

Both (a) and (b)

d)

None of these

3.

A microphone is an example of an _____________.

a)

Input device and actuator

b)

Only actuator

c)

Only Transducer

d)

Input device and transducer

4.

The ________________ of a sensor is the smallest change it can detect in the quantity that

it is measuring.

a)

Resolution

b)

Bias

c)

Noise

d)

None of these

5.

What language is the Arduino IDE built on?

a)

Java

b)

HTML

c)

C/C++

d)

Python

6.

Arduino IDE consists of 2 functions. What are they?


a)

Loop() and build() and setup()

b)

Build() and loop()

c)

Setup() and build()

d)

Setup() and loop()

7.

Arduino Codes are referred to as ________ in the Arduino IDE.

a)

sketches

b)

drawings

c)

links

d)

notes

8.

What is the microcontroller used in Arduino UNO?

a)

ATmega32114

b)

AT91SAM3x8E

c)

ATmega2560

d)

ATmega328p

9.

What is the operating voltage of Atmega328?

a)

1.9V to 5V

b)

1.8V to 5.5V

c)

1.1V to 5V

d)

12V to 9V

10.

What is the output of of below code:

#define X 10;

void setup()

{

X=0;

Serial.begin(9600);

Serial.print(X); } void loop(){ //Do nothing… }

a)

0xAB

b)

0xa

c)

0

d)

Error