Python Functions Quiz

Python Functions Quiz

1st Grade

18 Qs

quiz-placeholder

Similar activities

PYTHON QUIZ

PYTHON QUIZ

1st - 5th Grade

20 Qs

Python

Python

KG - Professional Development

13 Qs

Alpro

Alpro

1st Grade

20 Qs

Understanding Python

Understanding Python

1st Grade

20 Qs

Java March

Java March

KG - University

16 Qs

FinalTest

FinalTest

1st - 2nd Grade

15 Qs

Python Functions and Flowcharts

Python Functions and Flowcharts

1st - 3rd Grade

14 Qs

Cơ bản - 3

Cơ bản - 3

1st - 5th Grade

16 Qs

Python Functions Quiz

Python Functions Quiz

Assessment

Quiz

Computers

1st Grade

Hard

Created by

Adham Elmuntser

Used 1+ times

FREE Resource

18 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of print(greet('Bob')) if the greet function is defined as:

Hello Bob

Hello, Bob!

Hello, !

None

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the default value of the exponent parameter in the pow function in example 2?

1

2

3

None

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of print(pow(4, 3)) given the pow function is defined as:

16

8

64

12

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of print(add(3, 4)) if the add function is defined as:

5

7

3.5

14

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Given the function: def multiply(x, y, z): return x * y * z + 2 What is the output of print(multiply(1, 2, 3))?

8

9

6

12

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If the function concatenate is defined as: def concatenate(*args): print(args[1]) What is the output of concatenate('hello', 'world')?

hello

world

hello, world

None

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of print(calculate(8, 2)[2]) if the calculate function is defined as: def calculate(a, b): return a + b, a - b, a * b, a / b

10

6

16

4.0

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?