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

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

What is the expected output of the following code?

  • A. ('Peter': 30, 'Paul': 31)
  • B. ('Peter', 'Paul')
  • C. ['Peter': 30, 'Paul': 31]
  • D. ['Peter', 'Paul']
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
1 month, 2 weeks ago
Selected Answer: D
The expected output of the code is: ['Peter', 'Paul'] Explanation: data.keys() returns a view object that displays a list of all the keys in the dictionary data. list(data.keys()) converts this view object into a list, which contains the keys of the dictionary. The print statement outputs this list.
upvoted 2 times
...
consultsk
5 months, 2 weeks ago
Selected Answer: D
The output of this code will be: ['Peter', 'Paul'] This is because: data is a dictionary with two key-value pairs: 'Peter': 30 and 'Paul': 31. The keys() method returns a view object of all the keys in the dictionary. The list() function converts this view object into a list. Finally, the print() function outputs this list of keys. The order of the keys in the output may vary, as dictionaries in Python 3.7+ maintain insertion order, but in earlier versions, the order was not guaranteed. However, based on the code shown, this order is likely to be preserved.
upvoted 3 times
...
christostz03
5 months, 2 weeks ago
d is the 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