Python Practice Test #2

Python Practice Test #2

Assessment

Flashcard

Professional Development

Professional Development

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

30 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What do you expect the following code will print given the first input is apple (stored in variable a) and the second input is banana (stored in variable b)? Options: apple:banana, apple::banana, banana:apple:, banana::apple

Back

banana::apple

Answer explanation

The inputs were swapped during the assignment. x is assigned the value stored inside b, and y is assigned the value stored inside a.

2.

FLASHCARD QUESTION

Front

What will the output be after running the following code snippet? Options: 0, 4, 2, 1

Back

4

Answer explanation

The if clause inside myfun() will evaluate to true since the value passed to the function is >= 4. The if block will then be executed, and the value of 4 will be returned.

3.

FLASHCARD QUESTION

Front

What will the output be after running the following code snippet? Options: ['bananas', ''], ['bananas'], ['apples'], ['apples', 'bananas', '']

Back

['bananas', '']

Answer explanation

The element 'apples' will be removed from the list from the .remove('apples') method

4.

FLASHCARD QUESTION

Front

What will the output be after running the following code snippet? Options: [7, 6, 5, 4, 3, 2, 1], [1, 2, 3, 4, 5, 6, 7], [1, 2, 3, 4, 5, 6], [2, 3, 4, 5, 6, 7]

Back

[7, 6, 5, 4, 3, 2, 1]

Answer explanation

The symbol [:] accesses all elements in the list. [::-1] accesses all elements in the list but in reverse order.

5.

FLASHCARD QUESTION

Front

What will the output be after running the following code snippet? Options: 0b01, 0b11, 0b10, 10

Back

0b10

6.

FLASHCARD QUESTION

Front

What is the output of the following program?

Back

90

7.

FLASHCARD QUESTION

Front

What will the output be after running the following code snippet?

Back

False

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?

Discover more resources for Professional Development