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

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

What is the expected result of running the following code?

  • A. The code prints 2
  • B. The code prints 1
  • C. The code prints 0
  • D. The code raises an unhandled exception.
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
the_list = [x for x in range(2, 3)] range(2,3) → [2] So the_list = [2] do_the_mess(parameter) variable += parameter[0] This tries to increment variable, but inside the function we never declared variable as global. Python will look for a local variable variable to increment, but it doesn’t exist yet. UnboundLocalError: local variable 'variable' referenced before assignment Correct answer: D. The code raises an unhandled exception
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 ...