Q12Comprehension3 Marks23 Feb 2025
Passage
Consider the following snippet of code and answer the given subquestions.
```
l1 = ['a', 'e', 'i', 'o', 'u']
l2 = ['h', 'a', 'p', 'p', 'y']
l3 = l1
l3[0] = 'A'
print(l1)
l4 = l2
l2[1] = 'A'
l4[0] = 'X'
print(l4)
```
What will be the first line of output?