Python Which of the following is invalid variable in Python? __a = 1 _a = 1 __str__ = 1 None of the mentioned __a = 1 _a = 1 __str__ = 1 None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python What is the output of print 0.1 + 0.2 == 0.3 in python? Error False Machine dependent True Error False Machine dependent True ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(2, 5) list1.append(3, 5) list1.add(3, 5) list1.insert(3, 5) list1.insert(2, 5) list1.append(3, 5) list1.add(3, 5) list1.insert(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ percentage symbol (%) ampersand (&) caret (^) newline percentage symbol (%) ampersand (&) caret (^) newline ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] tuple list array dictionary tuple list array dictionary ANSWER DOWNLOAD EXAMIANS APP
Python When is the finally block executed? always when there is no exception when there is an exception only if some condition that has been specified is satisfied always when there is no exception when there is an exception only if some condition that has been specified is satisfied ANSWER DOWNLOAD EXAMIANS APP