Q25Comprehension3 Marks7 Jul 2024
Passage
Consider the following snippet of code and answer the subquestions that follow:
```
my_list = [1, 2, 3, 4, 5]
new_list = my_list
new_list[0] = 10
print(my_list)
```
Choose the correct option regarding the given code.