Drones rewind

Drones rewind

6th - 8th Grade

9 Qs

quiz-placeholder

Similar activities

Python Programming Sequence Class

Python Programming Sequence Class

3rd - 10th Grade

10 Qs

Scratch (4th April)

Scratch (4th April)

KG - University

11 Qs

Learn to code with Swift Playgrounds

Learn to code with Swift Playgrounds

4th - 6th Grade

10 Qs

Lesson 14 Real World Drones Ted Talks

Lesson 14 Real World Drones Ted Talks

7th Grade

10 Qs

Distance Drive Challenge Exit Ticket

Distance Drive Challenge Exit Ticket

8th Grade

11 Qs

DRONE THRUST TO WEIGHT RATIO

DRONE THRUST TO WEIGHT RATIO

8th Grade

6 Qs

Explore in Action

Explore in Action

4th Grade - University

10 Qs

Rainbow six siege

Rainbow six siege

5th - 12th Grade

8 Qs

Drones rewind

Drones rewind

Assessment

Quiz

Computers

6th - 8th Grade

Medium

Created by

花氦君 hanaheikun

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

What app should we use for manual flying drones?

2.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

What app should we use to type commands that controls our drones to fly?

3.

OPEN ENDED QUESTION

2 mins • 1 pt

Give me one drones law or restricted flying area

Evaluate responses using AI:

OFF

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

How to make drones starts flying by command?

fly()

up()

takeoff()

moveup()

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

How to make drones stop flying by command

land()

stop()

pause()

flyDown()

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

When we control drones to turn a different angle, which angle should we use?

Interior angle

Exterior angle

Sum of angle

All of the above

7.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which command should i use if i want to turn left with interior angle of 45 degrees

turnLeft(degree:45)

turnLeft(degree:135)

turnRight(degree:45)

turnRight(degree:225)

8.

OPEN ENDED QUESTION

2 mins • 1 pt

What sequence of command should i use to make the drone take off, fly forward 100 cm, turn right 55 degree, fly back 25 cm and then land

Evaluate responses using AI:

OFF

Answer explanation

takeoff()

flyForward(cm:100)

turnRight(degree:55)

fly backward(cm:25)

land()

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If we want to fly a repeated sequence, what command should we use?

Repeat the code many times

While loop

If-else statement

For loop