NEW
Font size
WorksheetsIT211 IoT Chap 2
Total questions: 5
Worksheet time: 2mins
How is a new variable created in Blockly?
Declare the variable in a Dim statement.
Determine the type of variable needed, then scroll to the appropriate place in the code to insert the variable.
Drag the variable block onto the work space area.
Use the assignment operator
What is used to illustrate how a given process will run?
graph
flow chart
pie chart
Packet Tracer
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?
Raspberry Pi
Beaglebone
Arduino
3D printer
Which platform is a low cost, credit-card-sized computer?
PL-App
Blockly
Raspberry Pi
Arduino
What is displayed after the following code is entered into a Python interpreter?
addition = 22 +10
print (addition)
nothing ( because the print command is wrong)
32
(syntaxerror)-...as there should not be a space between the numerical values
[22]+[10]
