MCQ IN COMPUTER SCIENCE & ENGINEERING

COMPUTER SCIENCE AND ENGINEERING

MACHINE LEARNING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
list ____ 1 = [2, 3, 4, 5]list ____ 1.append(6)print(list ____ 1). What is the Output?
A
[6, 2, 3, 4, 5]
B
[2, 3, 4, 5]
C
[2, 3, 6, 5, 4]
D
[2, 3, 4, 5, 6]
Explanation: 

Detailed explanation-1: -25 is the output. list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] is a list that consists 1 to 10 numbers within it.

There is 1 question to complete.