Python Quiz 7

Python Quiz 7

KG - 6th Grade

14 Qs

quiz-placeholder

Similar activities

Pioneer Coding - Mid Year Quiz (Python and Pokemon)

Pioneer Coding - Mid Year Quiz (Python and Pokemon)

Professional Development

15 Qs

Вспомнить все!

Вспомнить все!

5th Grade

15 Qs

Python Final Assessment

Python Final Assessment

4th - 12th Grade

10 Qs

XII_REVISION FOR FIRST UNIT TEST

XII_REVISION FOR FIRST UNIT TEST

12th Grade

15 Qs

Python Round 2

Python Round 2

University

10 Qs

Функции def

Функции def

9th - 12th Grade

10 Qs

Subroutines

Subroutines

9th - 11th Grade

16 Qs

Móviles 2 - Sesión 01

Móviles 2 - Sesión 01

University

10 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?