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

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

What is the expected output of the following code?

  • A. The code is erroneous.
  • B. ['Peter', 'Jane', 'Mary']
  • C. ['Peter', 'Jane']
  • D. ['Paul', 'Mary', 'Jane']
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

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
2 days, 10 hours ago
Selected Answer: A
The provided code snippet results in a TypeError because the variable list (which is a list) and the function list (which is a function) have the same name. When you call print(list(list)), the interpreter gets confused and tries to treat the function list as if it were the list list. To avoid this naming conflict, you should use different names for the variable and the function.
upvoted 1 times
...
pescamillam
2 months ago
Selected Answer: A
Traceback (most recent call last): File "main.py", line 8, in <module> print (list(list)) File "main.py", line 4, in list del data[1] TypeError: 'function' object does not support item deletion ** Process exited - Return Code: 1 ** Press Enter to exit terminal
upvoted 1 times
...
christostz03
4 months, 1 week ago
a is the correct answer. We can not have list as a def name.
upvoted 1 times
...
NullNickname
6 months, 3 weeks ago
Answer: C
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