Q. What is the output?
```python
class A:
x = 10
a = A()
b = A()
a.x = 20
print(b.x)
```
```python
class A:
x = 10
a = A()
b = A()
a.x = 20
print(b.x)
```
β
Correct Answer: (A)
10
Explanation: Changing `a.x` creates an instance variable that does not affect the class variable `x`.