Basic Karel Review

Basic Karel Review

9th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

Programming with Karel

Programming with Karel

9th - 12th Grade

9 Qs

Karel Quizzes 1-5 (Command - Start)

Karel Quizzes 1-5 (Command - Start)

9th - 12th Grade

10 Qs

Python Turtle

Python Turtle

KG - Professional Development

11 Qs

Y8 Java (Karel the dog)

Y8 Java (Karel the dog)

8th - 9th Grade

10 Qs

Paper Practice 2

Paper Practice 2

9th - 12th Grade

10 Qs

Karel Commands Quiz

Karel Commands Quiz

12th Grade

9 Qs

CodeHS Karel Unit

CodeHS Karel Unit

9th - 12th Grade

12 Qs

CodeHS Unit 1

CodeHS Unit 1

9th - 12th Grade

12 Qs

Basic Karel Review

Basic Karel Review

Assessment

Quiz

Computers

9th - 12th Grade

Easy

Created by

Ms. Morales

Used 5+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which command is written correctly?

move;

move()

move();

move

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which command is NOT written correctly?

turn_left()

put_ball()

take_ball

move()

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a command Basic Karel does not automatically know?

Turn left

Move forward

Turn right

Leave a ball

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What can be used to teach Basic Karel to turn right?

We can not teach Karel to turn right

Basic Karel already knows how to turn right

Give Karel dog treats

Define a function that allows it to make a right turn

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What symbol do we need to use in order to make a single line comment in our Python file?

# comment

// comment

/* comment */

" " " comment " " "

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What symbol do we need to use in order to make a multi line comment in our Python file?

# comment

// comment

/* comment */

" " " comment " " "

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Why will this Python code NOT work?

The function is not defined

The function needs to be defined before calling it

The function is never called

There is nothing wrong with this code