Python Which of the following blocks will be executed whether an exception is thrown or not? Else except Assert finally Else except Assert finally 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 Is Python case sensitive when dealing with identifiers? yes no machine dependent None of the mentioned yes no machine dependent None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter create_line(canvas) line() None of the mentioned canvas.create_line() create_line(canvas) line() None of the mentioned canvas.create_line() ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(2, 5) list1.add(3, 5) list1.insert(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.add(3, 5) list1.insert(3, 5) list1.append(3, 5) 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