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

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

Take a look at the snippet and choose one of the following statements which is true:

  • A. nums and vals are of the same length
  • B. nums is longer than vals
  • C. vals is longer than nums
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️

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
1 month, 1 week ago
Selected Answer: C
Let's analyze the given code snippet step-by-step to determine which statement is true: nums = [] vals = nums[:] vals.append(1) nums = [] nums is initialized as an empty list: []. vals = nums[:] vals is created as a shallow copy of nums. Since nums is an empty list, vals will also be an empty list: []. vals.append(1) 1 is appended to the list vals. After this operation, vals will be: [1]. Final State of the Lists nums remains an empty list: []. vals is now: [1]. Comparing the Lengths The length of nums is 0. The length of vals is 1. Conclusion vals is longer than nums. Therefore, the correct statement is: C. vals is longer than nums
upvoted 1 times
...
christostz03
5 months, 2 weeks ago
c is the correct answer. we have a swallow copy here so vals is greater since nums is not getting appended but only vals.
upvoted 2 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