Python Final Prep

Python Final Prep

University

32 Qs

quiz-placeholder

Similar activities

UNIT - III TEST

UNIT - III TEST

University

30 Qs

Computer Programming-2

Computer Programming-2

University

30 Qs

Decision and Case Control Statements in C

Decision and Case Control Statements in C

University

35 Qs

Tech Quest Level-2

Tech Quest Level-2

University

30 Qs

Quiz # 3- Computer Programming 2

Quiz # 3- Computer Programming 2

University

30 Qs

python

python

University

30 Qs

Python quiz 1

Python quiz 1

7th Grade - Professional Development

30 Qs

Python P2

Python P2

University

30 Qs

Python Final Prep

Python Final Prep

Assessment

Quiz

Computers

University

Hard

Created by

Joanne Phillips-Edley

Used 4+ times

FREE Resource

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
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?