exam questions

Exam PCEP-30-02 All Questions

View all questions & answers for the PCEP-30-02 exam

Exam PCEP-30-02 topic 8 question 50 discussion

Actual exam question from Python Institute's PCEP-30-02
Question #: 50
Topic #: 8
[All PCEP-30-02 Questions]

What happens when the user runs the following code?

  • A. The code outputs 1.
  • B. The code enters an infinite loop.
  • C. The code outputs 2.
  • D. The code outputs 3.
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
4ba36e7
1 month, 3 weeks ago
Selected Answer: A
The for loop iterates through 0 - 4 The if condition adds 1 to the total for every odd number (1, 3) => total = 2 The else block executes when the for loop is finished iterating, subtracting 1 from total total = 1 A. The code outputs 1.
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...