Programming Fundamentals Quiz

Programming Fundamentals Quiz

9th Grade

34 Qs

quiz-placeholder

Similar activities

Python Basics-01

Python Basics-01

9th - 12th Grade

32 Qs

Database Review

Database Review

9th - 12th Grade

30 Qs

Fundamentals of Comp Sci Midterm Review 2021

Fundamentals of Comp Sci Midterm Review 2021

9th - 12th Grade

39 Qs

Review Quiz Programming

Review Quiz Programming

9th Grade

31 Qs

Video Game Design Final

Video Game Design Final

9th Grade

34 Qs

CS&A Unit 4

CS&A Unit 4

9th - 12th Grade

33 Qs

Pascal Pro

Pascal Pro

8th - 12th Grade

32 Qs

Unit 5 & 6 Review

Unit 5 & 6 Review

9th - 12th Grade

30 Qs

Programming Fundamentals Quiz

Programming Fundamentals Quiz

Assessment

Quiz

Computers

9th Grade

Hard

Created by

Diana Mendoza

FREE Resource

34 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

How can we improve the following program?

Break down this program into more functions

Use a for loop to repeat the move command

Use a while loop to repeat the move command

Fix the indentation of this program

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

In the following code below from the Cleanup Karel example, what is the purpose of If Statement #2?

To move the last time

To pick up the ball that is in the last spot

To pick up the ball that is in the last spot, if there is one

To take the ball from all of the positions that have a ball on them

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of using a for loop in code?

To do something if a condition is true

To do something while a condition is true

To repeat something a fixed number of times

To make programs run faster

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What makes the following command an invalid Karel command?

turnleft();

It should end in a colon rather than a semicolon

The l should be a capital L

It should start with a capital T

This command is correct

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to define a turnRight function in Karel?

function turnRight() {

turnLeft();

turnLeft();

turnLeft();

}

function turnRight() { turnRight(); turnRight(); turnRight(); }

function turnRight {

turnLeft();

turnLeft();

turnLeft();

}

turnRight function() {

turnLeft();

turnLeft();

turnLeft();

}

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Why do we use functions in Karel programs?

Break down our program into smaller parts

Avoid repeating code

Make our program more readable

All of the above

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What’s wrong with this code?

The go function is defined twice

go is not a command that Karel understands

The go function has a syntax error

The go function is called twice

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?