exam questions

Exam PCEP-30-02 All Questions

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

Exam PCEP-30-02 topic 1 question 39 discussion

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

What is the expected output of the following code?

  • A. 22
  • B. 12
  • C. 0
  • D. 11
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
4 days, 10 hours ago
Selected Answer: B
Result Calculation: The for loop iterates over (fruits1, fruits2, fruits3) and checks conditions: If i[0] == 'Cherry', add 1 to res. If i[1] == 'Orange', add 10 to res. Details: For fruits1 = ['Cherry', 'Pear', 'Banana']: i[0] == 'Cherry': True → res += 1 → res = 1. i[1] == 'Orange': False → no change. For fruits2 = ['Cherry', 'Pear', 'Banana']: i[0] == 'Cherry': True → res += 1 → res = 2. i[1] == 'Orange': False → no change. For fruits3 = ['Apple', 'Orange', 'Banana']: i[0] == 'Cherry': False → no change. i[1] == 'Orange': True → res += 10 → res = 12. Output: The final value of res is 12. Final Output 12
upvoted 1 times
...
christostz03
4 months, 1 week ago
b is the correct answer
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