exam questions

Exam PCEP-30-02 All Questions

View all questions & answers for the PCEP-30-02 exam

Exam PCEP-30-02 topic 4 question 235 discussion

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

What is the expected output of the following code?

  • A. The code is erroneous.
  • B. 2
  • C. 1
  • D. 3
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
Donny_575
1 month, 1 week ago
Selected Answer: D
>> people{} #creates empty dictionary >> add_person('Peter') 'Peter' is not in people, so we add it with value 1 >> people = {'Peter': 1} >> add_person('Paul') 'Paul' is not in people, so we add it with value 1 people = {'Peter': 1, 'Paul': 1} >> add_person('peter') 'peter' is not in people ('peter' is lowercase, which is NOT the same as 'Peter' in Python (case-sensitive)) So we add it with value 1 people = {'Peter': 1, 'Paul': 1, 'peter': 1} print(len(people)) #output = 3 (3 keys: 'Peter', "Paul', 'peter)
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