Search Header Logo

Quiz 16

Authored by Vishnuvardhan Reddy Avija

Computers

University

Used 12+ times

Quiz 16
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

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

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Microsoft

Continue with Microsoft

or continue with

Facebook

Facebook

Apple

Apple

Others

Others

Already have an account?