wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

IT211 IoT Chap 2

Total questions: 5

Worksheet time: 2mins

Name
Class
Date
1.

How is a new variable created in Blockly?

a)

Declare the variable in a Dim statement.

b)

Determine the type of variable needed, then scroll to the appropriate place in the code to insert the variable.

c)

Drag the variable block onto the work space area.

d)

Use the assignment operator

2.

What is used to illustrate how a given process will run?

a)

graph

b)

flow chart

c)

pie chart

d)

Packet Tracer

3.

A student has a digitized version of an idea for a product. What machine can the student use to turn the idea into a solid object?

a)

Raspberry Pi

b)

Beaglebone

c)

Arduino

d)

3D printer

4.

Which platform is a low cost, credit-card-sized computer?

a)

PL-App

b)

Blockly

c)

Raspberry Pi

d)

Arduino

5.

What is displayed after the following code is entered into a Python interpreter?

addition = 22 +10

print (addition)

a)

nothing ( because the print command is wrong)

b)

32

c)

(syntaxerror)-...as there should not be a space between the numerical values

d)

[22]+[10]