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

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

What is the expected output of the following code?

  • A. The program will cause an error.
  • B. (1, 4, 9)
  • C. ('A', 'D', 'Z')
  • D. (5.0, 7.5, 9.9)
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, 2 weeks ago
Selected Answer: C
Let's analyze the given Python code step-by-step: Four tuples are defined: t1 = (1, 4, 9) t2 = ('A', 'D', 'Z') t3 = (True, False, None) t4 = (5.0, 7.5, 9.9) The next line performs tuple unpacking: t1, t3 = t2, t4 Here, t1 is assigned the value of t2 and t3 is assigned the value of t4. After this line: t1 now refers to ('A', 'D', 'Z') t3 now refers to (5.0, 7.5, 9.9) Finally, the code prints t1: print(t1) Since t1 has been reassigned to the value of t2, the output will be: ('A', 'D', 'Z')
upvoted 1 times
...
christostz03
5 months, 2 weeks ago
c 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