Python_Institute
PCEP-30-02 · Question #328
PCEP-30-02 Question #328: Real Exam Question with Answer & Explanation
Sign in or unlock PCEP-30-02 to reveal the answer and full explanation for question #328. The question stem and answer options stay visible for context.
Question
What is the expected output of the following code?
data = [1, {}, (2, ), (), { }, [4, 5]]
points = 0
for i in range(len(data)):
if type(data[i]) == list:
points += 1
elif type(data[i]) == tuple:
points += 10
elif type(data[i]) == set:
points += 100
elif type(data[i]) == dict:
points += 1000
else:
points += 10000
print(points)
Options
- A10221
- B1024
- C11112
- D11121
- E21102
Unlock PCEP-30-02 to see the answer
You've previewed enough free PCEP-30-02 questions. Unlock PCEP-30-02 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.