CodeHS Python Unit 3 Flashcard Review

CodeHS Python Unit 3 Flashcard Review

Assessment

Flashcard

Computers

9th - 12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

20 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What is the output of the following program? Assume the user enters “Florence”, then “Fernandez”.

Back

FlorenceFernandez

2.

FLASHCARD QUESTION

Front

What does the following program print? Options: <type 'str'>, <type 'int'>, <type 'float'>, The program crashes and doesn’t print anything.

Back

<type 'str'>

3.

FLASHCARD QUESTION

Front

Which of the following options is the best way to get a number from the user that you plan to use in a mathematical equation? Options: num = str(input(“Enter a number: “)), num = number(input(“Enter a number: “)), num = input(“Enter a number: “), num = int(input(“Enter a number: “))

Back

num = int(input(“Enter a number: “))

4.

FLASHCARD QUESTION

Front

Which one of the statements below will cause an error?
Options:
ans = “hi” * 8
ans = “hi” + 9
ans = “hi” + “hi” + “hi”
ans = (“a” * 4) + “b”

Back

ans = “hi” + 9

5.

FLASHCARD QUESTION

Front

What is the difference between a binary operator and a unary operator?

Back

A binary operator needs two things, while a unary operator only needs one.

6.

FLASHCARD QUESTION

Front

What is the final result of the expression 7 / 2 + 6?

Back

9.5

7.

FLASHCARD QUESTION

Front

Which of the following choices is a properly formed Python variable name, meaning it is both legal in the Python language and considered good style? Options: user_age, uSeRaGe, user!age!, 1user_age

Back

user_age

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?