This unique identifier in a database table ensures that each record can be uniquely identified.
What is a primary key?
This device in a robot converts electrical signals into mechanical movement, allowing robots to perform tasks.
What is a motor?
This programming language is Godot's built-in scripting language, used for writing gameplay code and logic.
What is GDScript?
This data type in GDScript represents whole numbers without a decimal point.
What is an Integer?
In a relational database, data is stored in these structures, made up of rows and columns.
What is a table?
This type of sensor is used by robots to detect distance, often relying on sound waves, like how bats navigate.
What is an ultrasonic sensor?
In Godot, this term describes the building blocks that make up the game, where each element in a game scene is an instance of it.
What is a Node?
This data type is used for numbers with decimal points, often used for more precise calculations.
What is a float/floating point value?
Explain what =sum(E2:E4) does.
it adds all values in E2, E3 and E4 together.
This part of a robot, often compared to a human hand, is responsible for picking up and manipulating objects.
What is an end effector/gripper?
Godot uses these to allow nodes to communicate with each other without being directly aware of each other's existence.
What is a signal?
This data type in Godot is used to store sequences of characters, typically enclosed in quotes.
What is a string?
explain how you could get the solution if you multiply the values in C4 and C5 together.
=C4*C5
This technology allows robots to determine their location and navigate through an environment, often used in autonomous vehicles.
What is GPS?
This feature in GDScript, like in Python, is critical for defining code blocks such as loops, functions, and conditionals, ensuring the code executes correctly.
What is indentation?
This data type is used to store values that can only be true or false.
What is a boolean?
Explain the fill down function on a spreadsheet.
When you continue a pattern in the spreadsheet, whether you continue a pattern of formulas or a number pattern.
These devices are able to use sensor hardware and control outputs using batteries and wires.
What is a microcontroller?
In Godot, this system allows developers to map physical key presses or controller inputs to custom action names, which can be used throughout the game.
What is the input map?
This Godot data type is used to store an ordered collection of values, which can be accessed by an index, and can hold multiple data types.
What is an array?