Y9 Java (Karel the dog)

Y9 Java (Karel the dog)

9th Grade

10 Qs

quiz-placeholder

Similar activities

CodeHS Concepts of Programming JavaScript

CodeHS Concepts of Programming JavaScript

9th - 12th Grade

15 Qs

CS: Quiz/Test 2.1-2.10

CS: Quiz/Test 2.1-2.10

9th - 12th Grade

15 Qs

CodeHS 2.11 If Statements

CodeHS 2.11 If Statements

9th - 12th Grade

10 Qs

Paper Practice 2

Paper Practice 2

9th - 12th Grade

10 Qs

CodeHS Test

CodeHS Test

9th - 12th Grade

12 Qs

Codehs Practice Test

Codehs Practice Test

9th - 12th Grade

12 Qs

Karel Programming 1

Karel Programming 1

9th - 12th Grade

8 Qs

Codehs

Codehs

9th - 12th Grade

15 Qs

Y9 Java (Karel the dog)

Y9 Java (Karel the dog)

Assessment

Quiz

Computers

9th Grade

Hard

Created by

matthew dallimore

Used 18+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

1 min • 1 pt

Why do we use functions in programming?

Makes the code more efficient

Functions take less time to write

The program reads functions at a faster pace

Easier to debug/problem solve a program

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

for(var i = 1; i < 6; i++){

putBall();


How many times will a ball be placed?

5

6

7

8

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

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

move();

How many times will Karel move?

5

6

7

8

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

function example() {

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

turnLeft();

}

Karel starts facing East and finishes facing East

Karel starts facing East and finishes facing South

Karel starts facing East and finishes facing West

Karel starts facing East and finishes facing North

5.

MULTIPLE SELECT QUESTION

1 min • 1 pt

Why do we use a for loop in programming

Easier to read

It's more efficient

To repeat an action a number of times

It helps with sequencing

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

Which code is correct? Karel starts at 0,0.

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

move();

}

putBall();

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

move();

}

putBall();

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

move();

}

putBall();

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

which code is correct? Karel starts at 0,0

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

move();

turnLeft();

move();

}

putBall();

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

move();

turnLeft();

move();

}

putBall();

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

move();

turnLeft();

move();

}

putBall();

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?