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

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

What is the output of the following snippet?

  • A. ['Mary', 'had', 'a', 'little', 'lamb']
  • B. ['Mary', 'had', 'a', 'lamb']
  • C. ['Mary', 'had', 'a', 'ramb']
  • D. No output, the snippet is erroneous
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
hovnival
2 days, 18 hours ago
Selected Answer: D
There are a few issues with the provided code: The list my_list is correctly defined, but the function my_list has the same name as the list my_list, which can cause confusion and errors. The function my_list does not return anything, so print(my_list(my_list)) will print None. Here is the corrected version of the code: Copy my_list = ['Mary', 'had', 'a', 'little', 'lamb'] def modify_list(input_list): del input_list[3] input_list[3] = 'ram' return input_list modified_list = modify_list(my_list) print(modified_list) In this corrected version: The function is renamed to modify_list to avoid naming conflicts. The function modify_list returns the modified list, which is then printed. When you run this code, the output will be: ['Mary', 'had', 'a', 'ram']
upvoted 1 times
...
megan_mai
4 months ago
Selected Answer: D
TypeError: 'function' object does not support item deletion
upvoted 2 times
...
Sanela
7 months, 1 week ago
D, because the name of the list is the same as the name of the function
upvoted 3 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