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 47 discussion

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

What happens when the user runs the following code?

  • A. The program enters an infinite loop.
  • B. The program outputs one asterisk ( * ) to the screen.
  • C. The program outputs five asterisks ( ***** ) to the screen.
  • D. The program outputs three asterisks ( *** ) to the screen.
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

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: D
1. 3 < 8; 3 + 2 = 5; print * 2. 5 < 8; 5 + 2 = 7; continue (don't print) 3. 7 < 8; 7 + 2 = 9; print * 4. 9 < 8 FALSE 5. else block runs because the while loop stops naturally (i.e., no break) => print * D. ***
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 ...