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

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

What is the expected output of the following code?

  • A. [7, 3, 23, 42]
  • B. [7, 20, 23, 42]
  • C. [10, 20, 42]
  • D. [10, 20, 23, 42]
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

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
4 months ago
Selected Answer: B
Let's analyze the code step by step: w = [7, 3, 23, 42] x = w[1:] y = w[1:] z = w y[0] = 10 z[1] = 20 print(w) w = [7, 3, 23, 42]: A list w is created with the values [7, 3, 23, 42]. x = w[1:]: This creates a new list x that is a slice of w, starting from index 1, i.e., x = [3, 23, 42]. Note that this is a shallow copy, meaning changes to x do not affect w. y = w[1:]: This creates another new list y which is also a slice of w, similar to x. So y = [3, 23, 42]. Like x, this is also a shallow copy. z = w: Here, z is assigned the reference to w, meaning any changes made to z will directly modify w. y[0] = 10: This modifies the first element of y, so y becomes [10, 23, 42]. However, since y is a separate copy, w remains unaffected by this change. z[1] = 20: This modifies the second element of z (and w, since z refers to w), so w becomes [7, 20, 23, 42]. Finally, when print(w) is called, it outputs: [7, 20, 23, 42] So the correct answer is B. [7, 20, 23, 42].
upvoted 2 times
...
scriptnone
6 months ago
Selected Answer: B
Answer is b: w = [7, 3, 23, 42] x = w[1:] y = w[1:] z = w y[0] = 10 z[1] = 20 print(w) # [7, 20, 23, 42]
upvoted 2 times
...
christostz03
8 months ago
b is correct answer
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