Which programming element stores a value that can change?
A variable
Which controller is explored in the robotics chapter?
CyberPi
What does IoT stand for?
Internet of Things
What can be inserted into an HTML page to organize information into rows and columns?
A table.
Which statement is used to evaluate a condition in Small Basic?
An if condition
Which sensor measures distance between the robot and an object?
The ultrasonic sensor
Which component is used to protect an LED in a circuit?
A resistor
A table contains information, but the text is not positioned correctly inside its cells. What should be adjusted?
The alignment of the text in the cells
Which loop repeats instructions while a condition remains true?
The While loop.
A robot must count objects detected by their color. Which sensor should be used?
The color sensor
Which loop is introduced to repeat instructions in an Arduino program?
The repeat loop
Which HTML element creates a horizontal line?
<hr>
Which Small Basic object is used to draw shapes?
Th Turtle object.
A robot must control electricity consumption according to the amount of light detected. Which sensor should be used?
The light sensor
Which tool allows the user to observe information sent by an Arduino program?
The Serial Monitor
Which part of an HTML document contains information such as the page title and metadata?
<head>
A Turtle must keep moving while a variable is less than 10. Which two concepts are required?
A variable and a While loop.
A robot’s speed must change according to the distance measured in front of it. What complete concept is being applied?
Controlling the speed of the robot according to the distance measured by the ultrasonic sensor.
Which light-sensitive component is used to control an LED?
The LDR
What is wrong with this code?
<h1>My Website<h1>
The closing tag should be </h1>.