Basic Karel Review

Basic Karel Review

9th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

Karel commands

Karel commands

10th Grade

11 Qs

Programming with Karel

Programming with Karel

9th - 12th Grade

9 Qs

Unit 2 Knowledge Test Make Up

Unit 2 Knowledge Test Make Up

9th - 12th Grade

11 Qs

Karel Quizzes 1-5 (Command - Start)

Karel Quizzes 1-5 (Command - Start)

9th - 12th Grade

10 Qs

Karel Adventures

Karel Adventures

9th - 12th Grade

10 Qs

Karel Commands

Karel Commands

9th - 12th Grade

10 Qs

Java

Java

9th - 12th Grade

12 Qs

CodeHS Karel Unit

CodeHS Karel Unit

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