Question 13 - Week 6 Practice | Prasnya
Prasnya
Continue with Google
Practice path
Dashboard
Exam
Qualifier / Quiz 1
Go to subject
Programing with python
Go to chapter
Week 6
Question 13
00:00
Est. 1 min
Marks:
+3.00
0.00
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) ```
Question
What will be the second line of output?
Comprehension
Easy Difficulty
23 February 2025
A
['a', 'e', 'i', 'o', 'u']
B
['h', 'a', 'p', 'p', 'y']
C
['X', 'a', 'p', 'p', 'y']
D
['X', 'A', 'p', 'p', 'y']