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

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

What is the expected output of the following code?

  • A. False
  • B. 1
  • C. 0
  • D. True
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
1 month, 2 weeks ago
Selected Answer: A
The expected output of the code is: False Explanation: data.copy() creates a shallow copy of the dictionary data. The new dictionary (person) contains the same key-value pairs but resides at a different memory location. id(data) retrieves the memory address of the data dictionary. id(person) retrieves the memory address of the person dictionary. Since the two dictionaries are separate objects, id(data) is not equal to id(person), and the comparison id(data) == id(person) evaluates to False.
upvoted 2 times
...
Ragoo
3 months, 2 weeks ago
Create a dictionary: data = {'name': 'Peter', 'age': 30} creates a dictionary with two key-value pairs. Make a copy: person = data.copy() creates a new dictionary person that is a copy of data. This means person has its own memory address, separate from data. Compare IDs: id(data) == id(person) compares the memory addresses of data and person. Since they are different objects, their IDs will not be equal, resulting in False. Selected Answer: A
upvoted 1 times
...
megan_mai
5 months, 2 weeks ago
Selected Answer: A
This method doesn’t modify the original, dictionary just returns copy of the dictionary. if we do person = data >>> result would be True
upvoted 1 times
...
christostz03
5 months, 2 weeks ago
a is correct answer / copy and [:] are swallow copies so id changes
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