Python - Functions

Quiz
•
Computers
•
University
•
Hard
Used 408+ times
FREE Resource
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
Similar Resources on Wayground
15 questions
Milking Minds 2 17-01-24

Quiz
•
University
10 questions
Списки Python + Pygame

Quiz
•
KG - University
15 questions
Java Bootcamp Day 4

Quiz
•
University
10 questions
C Programming Quiz-1

Quiz
•
University
10 questions
Rapid Round 2

Quiz
•
University
15 questions
Java Programming

Quiz
•
University
15 questions
C# Cơ bản

Quiz
•
University
10 questions
C Programming - Basics 001

Quiz
•
University
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
Appointment Passes Review

Quiz
•
6th - 8th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
20 questions
Grammar Review

Quiz
•
6th - 9th Grade