Python How many except statements can a try-except block have? more than zero one zero more than one more than zero one zero more than one ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? when no exception occurs Always when an exception occurs in to except block when an exception occurs when no exception occurs Always when an exception occurs in to except block when an exception occurs ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? 1 0 True False 1 0 True False ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Tuples of lists Array of tuples List of tuples Invalid type Tuples of lists Array of tuples List of tuples Invalid type 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 data type is the object below in Python? L = [1, 23, 'hello', 1] dictionary list array tuple dictionary list array tuple ANSWER DOWNLOAD EXAMIANS APP