Python_Institute
PCEP-30-02 · Question #310
PCEP-30-02 Question #310: Real Exam Question with Answer & Explanation
Sign in or unlock PCEP-30-02 to reveal the answer and full explanation for question #310. The question stem and answer options stay visible for context.
Question
Which of the following sentences correctly describes the output of the below Python code?
data = [4, 2, 3, 2, 1]
res = data[0]
for d in data:
if d < res:
res = d
print(res)
Options
- ANone of the above.
- Bres is the sum of all the number in the list.
- Cres is the smallest number in the list.
- Dres is the largest number in the list.
- Eres is the average of all the number in the list.
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.