Python Final Prep

Python Final Prep

University

32 Qs

quiz-placeholder

Similar activities

Blank Quiz

Blank Quiz

University

30 Qs

CW412 PART III

CW412 PART III

University

29 Qs

CH 6 Transforming Data

CH 6 Transforming Data

University

27 Qs

Freehand and Digital Drawing Midterm Exam 2021-2022

Freehand and Digital Drawing Midterm Exam 2021-2022

University

30 Qs

UJIAN MID SEMESTER 1 X RPL SISTEM KOMPUTER

UJIAN MID SEMESTER 1 X RPL SISTEM KOMPUTER

University

35 Qs

Lesson 4 - CMS: How it works?

Lesson 4 - CMS: How it works?

University

28 Qs

sistem enterprise

sistem enterprise

University

29 Qs

Bridge Course - Screening Test

Bridge Course - Screening Test

10th Grade - Professional Development

30 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