Python Practice Test #2

Python Practice Test #2

Professional Development

30 Qs

quiz-placeholder

Similar activities

Python

Python

Professional Development

30 Qs

Scheduling

Scheduling

Professional Development

26 Qs

Digital MR COGS Quiz

Digital MR COGS Quiz

Professional Development

33 Qs

QA Ramp Up Quiz 1

QA Ramp Up Quiz 1

Professional Development

25 Qs

QUIZ ON STRINGS - TUPLES - SET - DICTIONARY

QUIZ ON STRINGS - TUPLES - SET - DICTIONARY

Professional Development

25 Qs

class ,objects,variables & methods

class ,objects,variables & methods

Professional Development

25 Qs

Flutter_Q3

Flutter_Q3

Professional Development

29 Qs

Python - Basic Data, Structure, and Concepts

Python - Basic Data, Structure, and Concepts

Professional Development

30 Qs

Python Practice Test #2

Python Practice Test #2

Assessment

Quiz

Professional Development

Professional Development

Medium

Created by

Matt Little

Used 26+ times

FREE Resource

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

15 mins • 1 pt

Media Image

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)?

apple:banana

apple::banana

banana:apple:

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.

MULTIPLE CHOICE QUESTION

15 mins • 1 pt

Media Image

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

0

4

2

1

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.

MULTIPLE CHOICE QUESTION

15 mins • 1 pt

Media Image

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

['bananas', '']

['bananas']

['apples']

['apples', 'bananas', '']

Answer explanation

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

4.

MULTIPLE CHOICE QUESTION

15 mins • 1 pt

Media Image

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

[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]

Answer explanation

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

5.

MULTIPLE CHOICE QUESTION

15 mins • 1 pt

Media Image

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

0b01

0b11

0b10

10

6.

MULTIPLE CHOICE QUESTION

15 mins • 1 pt

Media Image

What is the output of the following program?

1

9

10

90

7.

MULTIPLE CHOICE QUESTION

15 mins • 1 pt

Media Image

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

Not equal

Equal

False

True

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?