7A - 7th Grade Code HS - Programming with Karel - 3.5 - 3.9

7A - 7th Grade Code HS - Programming with Karel - 3.5 - 3.9

7th Grade

7 Qs

quiz-placeholder

Similar activities

Create a Website 1

Create a Website 1

KG - University

10 Qs

Transitions in PowerPoint

Transitions in PowerPoint

6th - 8th Grade

10 Qs

Computer safety

Computer safety

6th - 9th Grade

10 Qs

Scratch!

Scratch!

4th Grade - Professional Development

8 Qs

Creating Webpages

Creating Webpages

6th - 8th Grade

12 Qs

Check-up Exercise: Buttons

Check-up Exercise: Buttons

7th Grade

10 Qs

How To Quizzizz

How To Quizzizz

6th - 8th Grade

11 Qs

prep1-revision

prep1-revision

7th Grade

12 Qs

7A - 7th Grade Code HS - Programming with Karel - 3.5 - 3.9

7A - 7th Grade Code HS - Programming with Karel - 3.5 - 3.9

Assessment

Quiz

Computers

7th Grade

Medium

Created by

Anonymous Anonymous

Used 8+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times should you call the start function in a program?

0

1

2

As often as you like

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Why do we use functions in programming?

Break down our program into smaller parts

Avoid repeating code

Make our program more readable

All of the above

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is top down design?

Top down design is a way of designing your program by starting with the biggest problem and breaking it down into smaller and smaller pieces that are easier to solve.

Top down design is a way that you can create designs on a computer to put on a web page

Top down design is a way of designing your programs starting with the individual commands first

Top down design is a way to use loops and classes to decompose the problem

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a code comment?

A way to teach Karel a new word

A way to give notes to the reader to explain what your code is doing

A message to your teacher in code

A place to write whatever you want in your code

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What commands does SuperKarel know that regular Karel does not?

turnLeft() and jump()

turnRight() and jump()

turnAround() and turnRight()

turnAround() and jump()

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the best way for Karel to move 10 times?

move();

move();

move();

move();

move();

move();

move();

move();

move();

move();

for (var i = 0; i < 10; i++) {

move();

}

move(10);

move10();

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times should the start function be defined in a program?

0

1

2

As often as you like