Python Functions and Returns

Python Functions and Returns

Assessment

Flashcard

Instructional Technology

9th - 12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

14 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What will print? Options: nothing, 5, 6, an error message

Back

nothing

2.

FLASHCARD QUESTION

Front

What does the following code output? Options: 11, 9; 16, 16; None, None; 225, 117

Back

11, 9

3.

FLASHCARD QUESTION

Front

Which of the following is the correct code to define a function? Options: def area ( ):, area ( ), def area:, def area ( )

Back

def area ( ):

4.

FLASHCARD QUESTION

Front

How do you correctly call this function? Options: def(1), x=square( ), defSquare(4), x=square(5)

Back

x=square(5)

5.

FLASHCARD QUESTION

Front

Which keyword marks a spot in a function where the program flow will go back to the calling code? Options: break, return, continue, jump

Back

return

6.

FLASHCARD QUESTION

Front

Which of the following statements correctly defines a function named "haunted" that takes a parameter named "apple"? Options: haunted(apple), haunted, def haunted(apple):, apple

Back

def haunted(apple):

7.

FLASHCARD QUESTION

Front

Which of the following statements will successfully send the value "EEK" back from a function to the calling code? EEK, return EEK, back EEK, #print(EEK)

Back

return EEK

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?