Python Final Prep

Python Final Prep

University

32 Qs

quiz-placeholder

Similar activities

Midterm Exam - Discrete Math

Midterm Exam - Discrete Math

University

35 Qs

MIDTERM EXAM (ISOM)

MIDTERM EXAM (ISOM)

University

28 Qs

Decision and Case Control Statements in C

Decision and Case Control Statements in C

University

35 Qs

QUIZ-LINUX WORKSHOP

QUIZ-LINUX WORKSHOP

University

27 Qs

CCNA1 Exam 83-110

CCNA1 Exam 83-110

University

27 Qs

Customer Service

Customer Service

University

27 Qs

BD SqlSvr

BD SqlSvr

University

27 Qs

An toàn và Bảo mật thông tin - Bài tập

An toàn và Bảo mật thông tin - Bài tập

University

27 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

Create a free account and access millions of resources

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?