Robotics (Liam) Flashcards

(40 cards)

1
Q

What is robotics?

A

Robotics is the branch of technology that deals with designing, building, and programming robots to perform tasks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the Internet of Things (IoT)?

A

IoT refers to a network of physical devices connected to the internet, which collect and exchange data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Give one real-life example of IoT.

A

A smart fridge that tells you when you’re low on milk.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the key difference between a human and a computer?

A

Humans think and feel, while computers follow programmed instructions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a variable in programming?

A

A variable is a storage location in a program that holds a value which can change.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does a formula in coding represent?

A

A formula is an expression that performs a calculation or action in a program.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the function of the ‘+’ operator?

A

It adds two values.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does the ‘AND’ condition do in programming?

A

It returns true only if both conditions are true.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What does the ‘OR’ condition do?

A

It returns true if at least one condition is true.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a servo motor?

A

A servo motor is a motor that moves to a specific angle, controlled by code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How does the Micro:bit control a servo motor?

A

By sending PWM (Pulse Width Modulation) signals to change the angle.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the difference between analogue and digital signals?

A

Analogue signals vary continuously; digital signals are either on or off (1 or 0).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Give an example of an analogue device.

A

A dimmer switch for lights.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Give an example of a digital device.

A

A light switch that is either on or off.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is a breakout board?

A

A board that allows easy access to the pins of a microcontroller or chip.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Why is correct power supply important in a circuit?

A

To prevent damage to components and ensure they work properly.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What is Tinkercad and what is its primary purpose?

A

Tinkercad is a free, web-based 3D design and modeling application that allows users to create 3D designs using simple building blocks. Its primary purpose is to help beginners learn 3D design and prepare models for 3D printing.

18
Q

Name two main categories of tools available in Tinkercad.

A
  • Basic shapes (geometric primitives like cubes, spheres, cylinders)
  • Electronics components (for circuit simulation)
19
Q

List five basic operations you can perform on objects in Tinkercad.

A
  • Move/translate objects
  • Rotate objects
  • Scale/resize objects
  • Group objects together
  • Create holes (subtract objects)
20
Q

Explain what a ‘hole’ object does in Tinkercad.

A

A ‘hole’ object in Tinkercad is used to subtract material from solid objects, creating hollow spaces or cutouts. Example: Creating a hole in a cube to make a container or box.

21
Q

What file format does Tinkercad typically export for 3D printing?

A

STL (STereoLithography) format

22
Q

Define robotics.

A

Robotics is the field of technology that deals with the design, construction, programming, and operation of robots to perform tasks automatically or with human guidance.

23
Q

Define Internet of Things (IoT).

A

Internet of Things (IoT) refers to a network of physical devices embedded with sensors, software, and connectivity that enables them to collect and exchange data over the internet.

24
Q

List four key differences between humans and computers.

A
  • Humans can think creatively and adapt; computers follow programmed instructions
  • Humans have emotions and intuition; computers process data logically
  • Humans can learn from experience naturally; computers need to be programmed to learn
  • Humans can handle ambiguous situations; computers need precise, clear instructions
25
In MakeCode, write the correct formula format for adding two variables A and B.
A + B
26
In MakeCode, write the correct formula format for multiplying variable X by 5.
X * 5
27
In MakeCode, write the correct formula format for dividing variable Y by 2.
Y / 2
28
What is a variable in programming? Give one example.
A variable is a named storage location that holds data or values that can change during program execution. Example: A variable called 'temperature' that stores the current room temperature reading.
29
Complete this logical condition: IF (temperature > 25) _____ (humidity > 60) THEN...
AND
30
Explain why the logical condition IF (temperature > 25) AND (humidity > 60) is used.
Both conditions must be true simultaneously.
31
Complete this logical condition: IF (button A pressed) _____ (button B pressed) THEN...
OR
32
Explain why the logical condition IF (button A pressed) OR (button B pressed) is used.
Either condition being true should trigger the action.
33
What is a servo motor?
A servo motor is a rotary actuator that allows for precise control of angular position, velocity, and acceleration using feedback control systems.
34
Give two advantages of using servo motors in robotics.
* Precise position control and accuracy * High torque-to-weight ratio and efficient power usage
35
Define analogue signal and give one example.
An analogue signal is a continuous signal that can have any value within a range, representing information through varying voltage levels. Example: Temperature sensor reading that varies smoothly from 0-100°C.
36
Define digital signal and give one example.
A digital signal is a discrete signal that has distinct states, typically represented as binary values (0 and 1). Example: A button press that is either ON (1) or OFF (0).
37
What is a breakout board?
A breakout board is a small circuit board that makes it easier to connect and use electronic components by providing accessible connection points and organizing pins.
38
Why are breakout boards useful in electronics projects?
* Make small components easier to connect and prototype with * Provide clear labeling of pins and connections
39
Why is correct power supply important in circuits?
Correct power supply is important because components are designed to operate within specific voltage and current ranges for optimal performance and safety.
40
What could happen if a component receives too much power?
* Overheat and become damaged * Stop functioning properly or permanently fail