Python To insert 5 to the third position in list1, we use which Python command? list1.insert(2, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(3, 5) list1.insert(2, 5) list1.add(3, 5) list1.append(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 _____________ newline ampersand (&) percentage symbol (%) caret (^) newline ampersand (&) percentage symbol (%) caret (^) ANSWER DOWNLOAD EXAMIANS APP
Python What is the maximum possible length of an identifier allowed by Python? 31 characters 63 characters None of the mentioned 79 characters 31 characters 63 characters None of the mentioned 79 characters ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter canvas.create_line() line() None of the mentioned create_line(canvas) canvas.create_line() line() None of the mentioned create_line(canvas) ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Array of tuples Tuples of lists List of tuples Invalid type Array of tuples Tuples of lists List of tuples Invalid type ANSWER DOWNLOAD EXAMIANS APP
Python Python MRO concept is Method Recursion Order None of the mentioned Method Resetting Order Method Resolution Order Method Recursion Order None of the mentioned Method Resetting Order Method Resolution Order ANSWER DOWNLOAD EXAMIANS APP