Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
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 232 discussion

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

What is the expected output of the following code?

  • A.
  • B.
  • C. None of the above.
  • D.
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
CristinaDev
1 month, 4 weeks ago
def func(data): data = [7,23,42] print('Function scope: ',data) data = ['Peter','Paul','Mary'] func(data) print('Outer scope: ',data) Answer is: Function scope: [7, 23, 42] Outer scope: ['Peter', 'Paul', 'Mary']
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 ...