Python Quiz 7

Python Quiz 7

KG - 6th Grade

14 Qs

quiz-placeholder

Similar activities

Python. Модулі та користувацькі функції

Python. Модулі та користувацькі функції

1st - 3rd Grade

14 Qs

HIGHER Python Subroutines Quiz

HIGHER Python Subroutines Quiz

9th Grade

12 Qs

JavaScript

JavaScript

University

13 Qs

Lesson 7: Boogie Bot Exit Slip

Lesson 7: Boogie Bot Exit Slip

10th Grade

10 Qs

Quiz 1: Rust for Beginner

Quiz 1: Rust for Beginner

7th Grade

15 Qs

Python Function and Return

Python Function and Return

9th - 12th Grade

12 Qs

Functions in Python

Functions in Python

9th - 12th Grade

16 Qs

C++ Quiz-1

C++ Quiz-1

University

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