Python - Functions

Python - Functions

University

10 Qs

quiz-placeholder

Similar activities

Computer Network Fun Review 5 - Data Link Layer

Computer Network Fun Review 5 - Data Link Layer

University

10 Qs

Graphs

Graphs

University

15 Qs

Adobe Photoshop

Adobe Photoshop

University

10 Qs

After Effect Intoduction

After Effect Intoduction

10th Grade - University

15 Qs

Google Aptitude Test

Google Aptitude Test

KG - University

10 Qs

VR and AR in multimedia applications

VR and AR in multimedia applications

University

10 Qs

OOP 1 Undiksha

OOP 1 Undiksha

12th Grade - University

13 Qs

Chapter 3 Exploring Linux Filesystems

Chapter 3 Exploring Linux Filesystems

11th Grade - University

10 Qs

Python - Functions

Python - Functions

Assessment

Quiz

Computers

University

Practice Problem

Hard

Used 416+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code:


print type(type(int))

type 'int'

type 'type'

Error

0

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code :


L = ['a','b','c','d']

print "".join(L)

Error

None

abcd

[‘a’,’b’,’c’,’d’]

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following segment:


chr(ord('A'))

A

B

a

Error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following program:


y = 8

z = lambda x : x * y

print z(6)

48

14

64

None of the above

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is called when a function is defined inside a class?

Module

Class

Another Function

Method

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the use of id() function in python?

Id returns the identity of the object

Every object doesn’t have a unique id

All of the mentioned

None of the mentioned

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following program:


import re

sentence = 'horses are fast'

regex = re.compile('(?P<animal>\w+) (?P<verb>\w+) (?P<adjective>\w+)')

matched = re.search(regex, sentence)

print(matched.groupdict())

{‘animal’: ‘horses’, ‘verb’: ‘are’, ‘adjective’: ‘fast’}

(‘horses’, ‘are’, ‘fast’)

‘horses are fast’

‘are’

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?