1. [2, 33, 222, 14]
2. Error
3. 25
4. [25, 14, 222, 33, 2]
[2, 33, 222, 14]
1. A
2. Daman
3. Error
4. n
n
1. 11
2. 12
3. 21
4. 22
12
1. [2, 6, 4]
2. [1, 3, 2, 1, 3]
3. [1, 3, 2, 1, 3, 2]
4. [1, 3, 2, 3, 2, 1]
[1, 3, 2, 1, 3, 2]
1. [0, 1, 2, 3]
2. [0, 1, 2, 3, 4]
3. [0.0, 0.5, 1.0, 1.5]
4. [0.0, 0.5, 1.0, 1.5, 2.0]
[0.0, 0.5, 1.0, 1.5]
1. True
2. False
3. Error
4. None
False
1. list1.add(5)
2. list1.append(5)
3. list1.addLast(5)
4. list1.addEnd(5)
list1.append(5)
1. list1.insert(3, 5)
2. list1.insert(2, 5)
3. list1.add(3, 5)
4. list1.append(3, 5)
list1.insert(2, 5)
1. list1.remove(“hello”)
2. list1.remove(hello)
3. list1.removeAll(“hello”)
4. list1.removeOne(“hello”)
list1.remove(“hello”)
1. 0
2. 1
3. 4
4. 2
2