Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
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 53 discussion

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

What is the expected behavior of the following code?

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

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
jarun2024
2 months, 3 weeks ago
Ans: C --- Tested in the IDE
upvoted 1 times
...
JeyTlenJey
4 months ago
Selected Answer: C
Correct: C class Class: Var = 0 def __init__(self,var): self.var = var Class.Var += 1 object_1 = Class(1) object_2 = Class(2) print(Class.Var + object_1.var + object_2.var, "values:", Class.Var ,object_1.var ,object_2.var) #5, 2 1 2
upvoted 1 times
...
Dave304409
4 months ago
Selected Answer: C
is correct
upvoted 1 times
...
DKAT2023
4 months, 2 weeks ago
Selected Answer: D
Class didn't take argument
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 ...