Python Final Prep

Python Final Prep

University

•

32 Qs

quiz-placeholder

Similar activities

Python Function

Python Function

University

•

30 Qs

CS10 Midterm Prep II

CS10 Midterm Prep II

University

•

29 Qs

DMC#1

DMC#1

University

•

30 Qs

ENSA Module Quiz 13 – Network Virtualization

ENSA Module Quiz 13 – Network Virtualization

University

•

27 Qs

Set 3

Set 3

12th Grade - University

•

30 Qs

Revisão A2

Revisão A2

University

•

28 Qs

REVIEWER 1-23

REVIEWER 1-23

University

•

28 Qs

Sistemi e Reti 2

Sistemi e Reti 2

University

•

28 Qs

Python Final Prep

Python Final Prep

Assessment

Quiz

•

Computers

•

University

•

Practice Problem

•

Hard

Created by

Joanne Phillips-Edley

Used 4+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

32 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following snippet?

def fun (x):

    if x % 2 ==0:

         return  1

else:

          return 2

print (fun(fun(2)))

The code will cause a runtime error

2

None

1

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many stars (*) will the following snippet send to the console?

i = 0

while i < i + 2:

     i += 1

     print ("*")

else:

      print ("*")

two

one

zero

the snippet will enter an infinite loop, printing one star per line

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the expected behavior of the following program?

try:

     print (5/0)

      break

except:

      print ("Sorry, something went wrong...")

except (ValueError, ZeroDivisionError):

      print ("Too bad...")

The program will cause a ZeroDivisionError exception and output a default error message

The program will cause a ValueError exception and output the following message: Too bad...

The program will cause a SyntaxError exception

The program will raise an exception handled by the first except block.

The program will cause a ZeroDivisionError exception and output the following message: Too bad...

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following piece of code?

print ("a", "b", "c", sep="sep")

abc

asepbsepcsep

asepbsepc

a b c

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following snippet:

def func (a, b):

     return b ** a

print (func(b=2, 2))

will output None

is erroneous

will output 2

will output 4

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code if the user enters a 0?

try:

     value = input("Enter a value: ")

     print (int(value)/len(value))

except ValueError:

     print ("Bad input...")

except ZeroDivisionError:

     print ("Very bad input...")

except TypeError:

     print("Very very bad input...")

except:

     print ("Booo!")

Booo1

Very bad input...

Very very bad input...

1.0

0.0

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many hashes (#) will the following snippet send to the console?

lst = [[x for x in range (3)] for y in range (3)]

for r in range (3):

     for c in range (3):

          if lst [r][c] % 2 !=0:

               print ("#")

six

zero

three

nine

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?

Discover more resources for Computers