and Answers 100% Guaranteed Success
| Already Rated A+
Which of the following code blocks produces the output given below?['odd', 'even',
'odd', 'even'] - 🧠ANSWER ✔✔new_list = [3, 4, 5, 6]
for i in range(len(new_list)):
if new_list[i] % 2 == 0:
new_list[i] = 'even'
else:
new_list[i] = 'odd'
print(new_list)
Select the output generated by the following code:
new_list = [10, 10, 20, 20, 30, 40]
for i in range(3):
COPYRIGHT©JOSHCLAY 2025/2026. YEAR PUBLISHED 2025. COMPANY REGISTRATION NUMBER: 619652435. TERMS OF USE. PRIVACY
STATEMENT. ALL RIGHTS RESERVED
1
,print(new_list[i])
new_value = new_list.pop(0) - 🧠ANSWER ✔✔10
20
30
What is output?
new_list = [10, 20, 30, 40]
for i in new_list[:]:
print(i)
new_value = new_list.pop(0) - 🧠ANSWER ✔✔10
20
30
40
What is output?
b1 = [7, 5, 9, 6]
COPYRIGHT©JOSHCLAY 2025/2026. YEAR PUBLISHED 2025. COMPANY REGISTRATION NUMBER: 619652435. TERMS OF USE. PRIVACY
STATEMENT. ALL RIGHTS RESERVED
2
,b1 = sorted(b1)
b2 = b1
b2.append(2)
print(b1, b2) - 🧠ANSWER ✔✔[5, 6, 7, 9, 2] [5, 6, 7, 9, 2]
What is output?
b1 = [7, 5, 9, 6]
b1.sort()
b2 = b1.copy()
b1.append(10)
b2 = b2[::-1]
print(b1, b2) - 🧠ANSWER ✔✔[5, 6, 7, 9, 10] [9, 7, 6, 5]
What is output?
b1 = [[7, 5, 9], [3, 2, 1]]
b1.sort()
COPYRIGHT©JOSHCLAY 2025/2026. YEAR PUBLISHED 2025. COMPANY REGISTRATION NUMBER: 619652435. TERMS OF USE. PRIVACY
STATEMENT. ALL RIGHTS RESERVED
3
, b2 = b1[:]
print(b1, b2)
for elem in b2:
elem.sort()
print(b1, b2) - 🧠ANSWER ✔✔[[3, 2, 1], [7, 5, 9]] [[3, 2, 1], [7, 5, 9]]
[[1, 2, 3], [5, 7, 9]] [[1, 2, 3], [5, 7, 9]]
Which of the following options can sort the list in descending order?
i. list_name.sort(reverse=True)
ii. sorted(list_name, reverse=True)
iii. sorted(list_name)[::-1]
iv. sorted(list_name) - 🧠ANSWER ✔✔i, ii, iii
What will be the date type for type(list_name.sort())
and type(sorted(list_name))? - 🧠ANSWER ✔✔< class 'NoneType'>, < class 'list'>
Which of the following statements is incorrect for python dictionaries? -
🧠ANSWER ✔✔Dictionaries cannot contain objects of arbitrary type
COPYRIGHT©JOSHCLAY 2025/2026. YEAR PUBLISHED 2025. COMPANY REGISTRATION NUMBER: 619652435. TERMS OF USE. PRIVACY
STATEMENT. ALL RIGHTS RESERVED
4