What will be the output of the following code:
print type(type(int))
Python - Functions
Quiz
•
Computers
•
University
•
Hard
Used 407+ 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’
12 questions
javaquizvivek
Quiz
•
University
10 questions
Array in C
Quiz
•
University
15 questions
Java Method
Quiz
•
University
7 questions
Quiz on Java Operators
Quiz
•
University
10 questions
Java Control Flow statements
Quiz
•
University
14 questions
Java Operators
Quiz
•
University
10 questions
exception
Quiz
•
University
15 questions
Round 4 - Harvest
Quiz
•
University
15 questions
Character Analysis
Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing
Quiz
•
9th - 12th Grade
10 questions
American Flag
Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension
Quiz
•
5th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25
Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers
Quiz
•
6th - 8th Grade