wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

NEXORA

Total questions: 25

Worksheet time: 15mins

Name
Class
Date
1.

In MySQL, which data type is best for storing text of variable length?

a)

CHAR

b)

VARCHAR

c)

TEXT

d)

STRING

2.

Which layer of the IoT architecture is responsible for data processing and decision-making?

a)

Perception layer

b)

Network layer

c)

Application layer

d)

Middleware layer

3.

What is the output of the following Python code?

x = [1, 2, 3]

print(x * 2)

a)

[1, 2, 3, 1, 2, 3]

b)

[2, 4, 6]

c)

Error

d)

123123

4.

The Boolean expression A’B + AB’ represents which gate?

a)

XOR

b)

XNOR

c)

NAND

d)

NOR

5.

What is the default subnet mask for a Class C IPv4 address?

a)

255.255.0.0

b)

255.255.255.0

c)

255.0.0.0

d)

255.255.255.255

6.

In IoT systems, which addressing method is commonly used to identify individual devices on a network?

a)

MAC address

b)

DNS

c)

URL

d)

HTTP ID

7.

What is the output of the following?

print([] or [0])

a)

[]

b)

[0]

c)

0

d)

None

8.

Which SQL statement is used to remove duplicate rows from the result set?

a)

DISTINCT

b)

UNIQUE

c)

REMOVE

d)

CLEAN

9.

Which layer of the OSI model is responsible for encryption and compression?

a)

Application

b)

Presentation

c)

Session

d)

Transport

10.

Which of these is NOT a characteristic of IoT devices?

a)

Low power consumption

b)

Always-on internet connectivity

c)

Ability to operate completely offline indefinitely

d)

Data exchange capability

11.

In IoT security, which term refers to ensuring that data cannot be modified by unauthorized parties?

a)

Authentication

b)

Confidentiality

c)

Integrity

d)

Non-repudiation

12.

What will be the output?

x = (1, 2, 3)

x[0] = 5

a)

(5, 2, 3)

b)

Error

c)

[5, 2, 3]

d)

None

13.

What is the output?

print(type({}))

a)

<class 'set'>

b)

<class 'dict'>

c)

<class 'list'>

d)

<class 'tuple'>

14.

Which of the following is not a valid aggregate function in MySQL?

a)

SUM()

b)

COUNT()

c)

MAX()

d)

ADD()

15.

Which network device operates at the Data Link Layer of the OSI model?

a)

Router

b)

Switch

c)

Hub

d)

Gateway

16.

Which IEEE standard defines Wireless Personal Area Networks often used in IoT devices like Zigbee?

a)

IEEE 802.11

b)

IEEE 802.15.4

c)

IEEE 802.3

d)

IEEE 802.15.1

17.

What will this code print?

print('5' * 3 + '2')

a)

5552

b)

152

c)

Error

d)

552

18.

What will be the output?

print(bool(0), bool(0.0), bool(0j))

a)

True True True

b)

False False False

c)

False True True

d)

Error

19.

What does the following Python code print?

a = [1, 2, 3]

b = a

b.append(4)

print(a)

a)

[1, 2, 3]

b)

[1, 2, 3, 4]

c)

Error

d)

[4, 1, 2, 3]

20.

Which of the following expressions will evaluate to True in Python?

a)

0 == False

b)

1 == True

c)

bool("False")

d)

All of the above

21.

What is the binary representation of hexadecimal 7F? 1111111

(a)  

22.

In computing, what is the term for one quadrillion bytes?

(a)  

23.

What is the maximum number of different values that can be represented with 8 bits?

(a)  

24.

What is the hexadecimal representation of the binary number 101101111100?

(a)  

25.

Which protocol does SNMP use by default for network management?

(a)