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
→
What data type is the object below? L = ...
Q.
What data type is the object below? L = [1, 23, „hello‟, 1]
A.
List
B.
Dictionary
C.
Tuple
D.
Array
Answer» A. List
2.3k
0
Do you find this helpful?
1
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)
Which of these is not a core data type?
To read the entire remaining contents of the file as a string from a file object infile, we use
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?