Quiz 16

Quiz 16

University

10 Qs

quiz-placeholder

Similar activities

REACTOR

REACTOR

University

15 Qs

104-P-01: Delegates and lambdas

104-P-01: Delegates and lambdas

University

10 Qs

Round 2 Debug-The-Code

Round 2 Debug-The-Code

University

15 Qs

JavaScrip - DSI

JavaScrip - DSI

1st Grade - University

14 Qs

Functions and Modules

Functions and Modules

University

10 Qs

Python Unit 3

Python Unit 3

University

10 Qs

Plot the Code

Plot the Code

University

10 Qs

Code Chef Python

Code Chef Python

University

15 Qs

Quiz 16

Quiz 16

Assessment

Quiz

Computers

University

Hard

Created by

Vishnuvardhan Reddy Avija

Used 12+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following function:
def square(num):
              num_squared = num ** 2
              return num_squared
Which of the following lines of codes is the function’s signature?

return num_squared

none

def square(num):

num_squared = num ** 2

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the name given to that area of memory, where the system stores the parameters and local variables of a function call?

a heap

storage area

a stack

an array

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

def func(x = 1, y = 2):

x = x + y

y += 1

print(x, y)

func(y = 2, x = 1)

3 3

1 3

2 3

3 2

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

def func(x = 1, y = 2):

x = x + y

y += 1

print(x, y)

func(y = 20, x = 10)

30 20

30 21

21 30

20 30

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code snippet?def test(x = 1, y = 2):

x = x + y

y += 1

print(x, y)


test()

1 3

3 1

1 1

3 3

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

____________________ can be defined as a named group of instructions that accomplish a specific task when it is invoked/called.

Datatype

Function

Token

Operator

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following are advantages of using function in program?

It increases readability of program.

It increases reusability.

t makes debugging easier.

All of these

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?