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 (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Abbribas
1 month, 2 weeks ago
Selected Answer: C
Class.Var increments to 2 across two object creations, while object_1.var is 1 and object_2.var is 2. The final sum is 2 + 1 + 2 = 5.
upvoted 1 times
...
jarun2024
11 months, 3 weeks ago
Ans: C --- Tested in the IDE
upvoted 1 times
...
JeyTlenJey
1 year 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 3 times
...
Dave304409
1 year ago
Selected Answer: C
is correct
upvoted 1 times
...
DKAT2023
1 year, 1 month 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 ...