exam questions

Exam PCEP-30-02 All Questions

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

Exam PCEP-30-02 topic 4 question 11 discussion

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

What is the expected output of the following code?

  • A. 4 1
  • B. 4 4
  • C. 1 4
  • D. The code is erroneous.
  • E. 1 1
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
Knight82
4 days, 9 hours ago
Selected Answer: D
The reason D is the answer because the num variable has no scope within the function. num = num + 3 as we see here is created inside the function. So when we run it, the program doesn't know which num variable to use. so, it would be help full if we type the following: num =1 def func(): global num num = num +3 print(num) func()
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