exam questions

Exam PCAP-31-03 All Questions

View all questions & answers for the PCAP-31-03 exam

Exam PCAP-31-03 topic 1 question 97 discussion

Actual exam question from Python Institute's PCAP-31-03
Question #: 97
Topic #: 1
[All PCAP-31-03 Questions]

What is the expected behavior of the following code?

  • A. it outputs 3
  • B. it outputs 6
  • C. it outputs 1
  • D. it raises an exception
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

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
Abbribas
1 week, 6 days ago
Selected Answer: B
Name Mangling: Python performs name mangling for variables starting with double underscores __: __Var becomes _Class__Var __prop becomes _Class__prop So: o._Class__Var → 2 o._Class__prop → 4 2 + 4 = 6
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 ...