Basic Karel Review

Basic Karel Review

9th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

AP CSP DIagnostic

AP CSP DIagnostic

10th Grade

10 Qs

Data and Society

Data and Society

9th Grade - University

11 Qs

Unit 5 Data

Unit 5 Data

9th Grade - University

11 Qs

if statements

if statements

9th Grade

6 Qs

Programming Quiz

Programming Quiz

6th - 10th Grade

4 Qs

CodeHS 1.13 Control Structures Example

CodeHS 1.13 Control Structures Example

9th - 12th Grade

8 Qs

Python_R

Python_R

2nd Grade - Professional Development

8 Qs

Ergobot Quiz

Ergobot Quiz

9th - 12th Grade

10 Qs

Basic Karel Review

Basic Karel Review

Assessment

Quiz

Computers

9th - 12th Grade

Easy

Created by

Ms. Morales

Used 6+ 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