Quiz 16

Quiz 16

University

10 Qs

quiz-placeholder

Similar activities

DS_NumPy_TEST1

DS_NumPy_TEST1

University

12 Qs

PHP MySQL

PHP MySQL

University

15 Qs

Lesson 3 Recap

Lesson 3 Recap

University

6 Qs

C++ Array Quick Review

C++ Array Quick Review

University

10 Qs

Большое Повторение C#

Большое Повторение C#

5th Grade - University

15 Qs

BASIC C PROGRAMMING

BASIC C PROGRAMMING

University

15 Qs

Java

Java

University

15 Qs

FST Class 2023- Quiz 2

FST Class 2023- Quiz 2

University

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