exam questions

Exam PCEP-30-02 All Questions

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

Exam PCEP-30-02 topic 6 question 34 discussion

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

What is the expected output of the following code if the user enters 3 and 2?

  • A. 1
  • B. 2
  • C. 3
  • D. 0
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
Donny_575
1 week, 5 days ago
Selected Answer: D
D. 0 x = int(input()) # x = 3 y = int(input()) # y = 2 x = x % y # x = 3 % 2 = 1 x = x % y # x = 1 % 2 = 1 y = y % x # y = 2 % 1 = 0 print(y) # Output: 0
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 ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago