Python  DAY 4Quiz

Python DAY 4Quiz

University

15 Qs

quiz-placeholder

Similar activities

code trivia

code trivia

University

15 Qs

Round 1

Round 1

University

15 Qs

Praktisi Mengajar - Python

Praktisi Mengajar - Python

University

12 Qs

Geeks for Geeks PCCOER Info Session CP Quiz

Geeks for Geeks PCCOER Info Session CP Quiz

University

20 Qs

Python Functions and File Operations Quiz cyber 2025

Python Functions and File Operations Quiz cyber 2025

University

18 Qs

PYTHON FUNCTION

PYTHON FUNCTION

University

20 Qs

PYTHON PROGRAMMING Q4 FUNCTIONS

PYTHON PROGRAMMING Q4 FUNCTIONS

University

20 Qs

Understanding Python Functions

Understanding Python Functions

University

20 Qs

Python  DAY 4Quiz

Python DAY 4Quiz

Assessment

Quiz

Computers

University

Hard

Created by

ABINAYA 2022-2026

Used 1+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you pass a variable number of arguments to a function?

Using args

Using kwargs

Using ar

Both args and kwargs

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the return statement in a function?

To end the function execution

To write a function

To specify the return value of the function

None of the above

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following function signatures is invalid in Python?

def func(a, b=2, c=3):

def func(a, b, c=3):

def func(a=1, b, c=3):

def func(a, b=2, c=3, *args):

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a lambda function in Python?

A named function

A small anonymous function

A recursive function

A type of loop

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you specify a default value for a function parameter?

def func(param=default):

def func(param:default):

def func(param default):

def func(param-default):

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a valid string method in Python?

find()

replace()

append()

strip()

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? python print("Hello, World!"[7])

H

W

o

,

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?