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 When will the else part of try-except-else be executed? when no exception occurs when an exception occurs in to except block Always when an exception occurs when no exception occurs when an exception occurs in to except block Always when an exception occurs ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.add(3, 5) list1.insert(2, 5) list1.insert(3, 5) list1.append(3, 5) list1.add(3, 5) list1.insert(2, 5) list1.insert(3, 5) list1.append(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python What is the maximum possible length of an identifier allowed by Python? 63 characters 31 characters None of the mentioned 79 characters 63 characters 31 characters None of the mentioned 79 characters ANSWER DOWNLOAD EXAMIANS APP
Python What arithmetic operators cannot be used with strings in Python? – All of the mentioned * + – All of the mentioned * + ANSWER DOWNLOAD EXAMIANS APP
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