Q3Comprehension2 Marks10 May 2026
Passage
Based on the above data, answer the given subquestions.
```
class Counter:
count = 0
def __init__(self, X):
self.x = X
Counter.count += 1
def inc(self):
self.x += 1
return self.x
a = Counter(3)
b = Counter(5)
c = a.inc()
d = b.inc()
```
What is the value of Counter.count?