Python_Institute
PCEP-30-02 · Question #320
PCEP-30-02 Question #320: Real Exam Question with Answer & Explanation
Sign in or unlock PCEP-30-02 to reveal the answer and full explanation for question #320. The question stem and answer options stay visible for context.
Question
You are developing a Python application for an online product distribution company. You need the program to iterate through a list of products and escape when a target product ID is found.
productIdList = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
index = 0
??? index < 10:
print(productIdList[index])
if productIdList[index] == 6:
???
else:
index += 1
What would you insert instead of ??? and ??? ?
Options
- A1 | if; 2 | break
- B1 | break; 2 | while
- C1 | for; 2 | break
- D1 | while; 2 | break
- E1 | while; 2 | for
- F1 | for; 2 | while
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.