McqMate
Sign In
Hamberger menu
McqMate
Sign in
Sign up
Home
Forum
Search
Ask a Question
Sign In
McqMate Copyright © 2025
→
Computer Science Engineering (CSE)
→
Python Programming
→
Which of these is not a core data type?
Q.
Which of these is not a core data type?
A.
Lists
B.
Dictionary
C.
Tuples
D.
Class
Answer» D. Class
941
0
Do you find this helpful?
12
View all MCQs in
Python Programming
Discussion
No comments yet
Login to comment
Related MCQs
What is the output of the following program? data = [2, 3, 9] temp = [[x for x in[data]] for x in range(3)] print (temp)
What is the output of the following program? data = [x for x in range(5)] temp = [x for x in range(7) if x in data and x%2==0] print(temp)
What data type is the object below? L = [1, 23, „hello‟, 1]
What is the output of the following program? f = None for i in range (5): with open("data.txt", "w") as f: if i > 2: break print(f.closed)
What is the type of each element in sys.argv?
Which function overloads the >> operator?
Which module in Python supports regular expressions?
Which of the following formatting options can be used in order to add „n‟ blank spaces after a given string „S‟?
Suppose t = (1, 2, 4, 3), which of the following is incorrect?