Python Quiz 7

Python Quiz 7

KG - 6th Grade

14 Qs

quiz-placeholder

Similar activities

Python function output based KVRDSO lucknow

Python function output based KVRDSO lucknow

11th - 12th Grade

11 Qs

Python Review

Python Review

11th Grade

11 Qs

Python Functions

Python Functions

12th Grade

15 Qs

PCEP Section 4B: the function and its environment

PCEP Section 4B: the function and its environment

12th Grade

10 Qs

Test on Python Function

Test on Python Function

11th - 12th Grade

12 Qs

PYTHON (Functions)

PYTHON (Functions)

6th Grade

10 Qs

Test on Python Function

Test on Python Function

11th - 12th Grade

12 Qs

Swift Playground

Swift Playground

5th - 6th Grade

12 Qs

Python Quiz 7

Python Quiz 7

Assessment

Quiz

Computers

KG - 6th Grade

Hard

Created by

Jerry Xiao

Used 7+ times

FREE Resource

14 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

True or False: In Python, there is no restriction on the name of a module file.

True

False

2.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

True or False: The randint function returns a randomly selected value from a specific sequence of numbers

True

False

3.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

A(n) _____ is a variable that receives an argument that is passed into a function

Argument

Parameter

Named Constant

Global Variable

4.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

What will be the output after the following code is executed?

def pass_it(x, y): ㅤㅤㅤㅤㅤ

z = x + “, “ + y ㅤㅤ

return(z) ㅤㅤㅤㅤ

name2 = “Tony” ㅤㅤㅤㅤㅤ

name1 = “Gaddis” ㅤㅤㅤㅤㅤ

ㅤㅤㅤfullname = pass_it(name1, name2)

print(fullname)ㅤㅤㅤㅤㅤㅤㅤ

Gaddis, Tony

Gaddis Tony

Tony Gaddis

Tony, Gaddis

5.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

What will be displayed after the following code is executed?:

def pass_it(x, y): ㅤㅤㅤㅤㅤㅤㅤㅤ

z = x*y ㅤㅤㅤㅤㅤㅤㅤㅤ

result = get_result(z) ㅤㅤㅤ

return(result) ㅤㅤㅤㅤㅤㅤ

def get_result(result): ㅤㅤㅤㅤㅤㅤㅤ

z = result + 2 ㅤㅤㅤㅤㅤㅤ

return(z) ㅤㅤㅤㅤㅤㅤㅤㅤ

num1 = 3 ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ

num2 = 4 ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ

answer = pass_it(num1, num2) ㅤㅤㅤ

print(answer)ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ

9

14

12

Syntax Error

6.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

What are the benefits of creating a function?

Simpler Code

Code Reuse

Better Testing and Debugging

Faster Development and Easier for TeamWork

All of the Above

7.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

True or False: The below functions are the same.

max()

Max()

True

False

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?