exam questions

Exam PCEP-30-02 All Questions

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

Exam PCEP-30-02 topic 2 question 15 discussion

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

What is the expected output of the following code?

  • A. True True
  • B. True False
  • C. False False
  • D. False True
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

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
hovnival
1 month, 1 week ago
Selected Answer: B
Let's analyze the code step-by-step: x = True y = False x = x or y Since x is True and y is False, x or y evaluates to True. So, x remains True. y = x and y Now, x is True and y is False, x and y evaluates to False. So, y remains False. x = x or y Again, x is True and y is False, x or y evaluates to True. So, x remains True. Finally, the print(x, y) statement will output True False. So, the correct answer is: B. True False
upvoted 2 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