Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 1 4 0 2 1 4 0 2 ANSWER DOWNLOAD EXAMIANS APP
Python Which one of these is used for floor division in Python? // % None of the mentioned / // % None of the mentioned / ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? _a = 1 __str__ = 1 __a = 1 None of the mentioned _a = 1 __str__ = 1 __a = 1 None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of the following cannot be a variable? on __init__ in It on __init__ in It ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.add(5) list1.addEnd(5) list1.append(5) list1.addLast(5) list1.add(5) list1.addEnd(5) list1.append(5) list1.addLast(5) ANSWER DOWNLOAD EXAMIANS APP