Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 1 0 2 4 1 0 2 4 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 What is the maximum possible length of an identifier allowed by Python? None of the mentioned 79 characters 63 characters 31 characters None of the mentioned 79 characters 63 characters 31 characters ANSWER DOWNLOAD EXAMIANS APP
Python How many except statements can a try-except block have? more than one zero more than zero one more than one zero more than zero one 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 Which of the following blocks will be executed whether an exception is thrown or not? finally Else except Assert finally Else except Assert ANSWER DOWNLOAD EXAMIANS APP