Python CodeHS Nov. 6

Python CodeHS Nov. 6

9th Grade

10 Qs

quiz-placeholder

Similar activities

For Loops (Java)

For Loops (Java)

9th - 12th Grade

14 Qs

Loops and Iteration in Programming Quiz

Loops and Iteration in Programming Quiz

9th Grade

10 Qs

AP CSP Exam Review: Big Idea 3

AP CSP Exam Review: Big Idea 3

8th - 10th Grade

15 Qs

FOR Loops Python

FOR Loops Python

9th - 12th Grade

12 Qs

CodeHS Unit 1

CodeHS Unit 1

9th - 12th Grade

12 Qs

Python Intro

Python Intro

8th - 9th Grade

10 Qs

Coding Pre-quiz

Coding Pre-quiz

6th - 9th Grade

15 Qs

Python Programming - Iteration

Python Programming - Iteration

9th Grade

12 Qs

Python CodeHS Nov. 6

Python CodeHS Nov. 6

Assessment

Quiz

Computers

9th Grade

Hard

Created by

PRESTON COLE

Used 9+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What will be the output of the following code?

2.0

2

2.125

An error occurs

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the result of the following code snippet?

"ompuompu"

"ComputComput"

"ComputerComputer"

"ompComp"

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What does the following function return when called with calculate(2, 3)?

5

-1

1

3

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

How many times will the following loop run?

3 times

4 times

5 times

The loop will run indefinitely

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which of the following is true about the following code?

The code contains a syntax error

The code contains two comments

The code will print the comments to the console

The code will not run because of the comment on line 2

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the result of executing the following list operation?

[1, 6, 7, 5]

[1, 2, 3, 6, 7]

[6, 7, 5]

[1, 6, 7, 7, 5]

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the string file_name = "report_final_copy.doc"

Which of the following operations would correctly change the file extension

to .pdf and store it in a new string `new_file_name`?

new_file_name = file_name.replace("doc", "pdf")

new_file_name = file_name[:-3] + 'pdf'

new_file_name = file_name.split(".")[0] + '.pdf'

All of the above

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?