PCAP • Timed Practice Test 3
This is a timed practice session. You have 10 minutes to answer 10 questions — approximately 1 minute per question, matching real PCAP exam pace. Answer every question before time expires.
Time remaining
10:00
Exam-pace drill
Allow 1 minute per question. On the real PCAP exam you have approximately 72 seconds per question — this session trains you to maintain that pace under pressure.
Refer to the exhibit. What is the output?
class Counter:
count = 0
def __init__(self):
Counter.count += 1
self.id = Counter.count
c1 = Counter()
c2 = Counter()
print(c1.id, c2.id)