Python Which of the following functions results in case insensitive matching? re.U re.I re.X re.A re.U re.I re.X re.A ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? List of tuples Array of tuples Invalid type Tuples of lists List of tuples Array of tuples Invalid type Tuples of lists ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.append(3, 5) list1.insert(2, 5) list1.insert(3, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.insert(3, 5) list1.add(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? False 0 True 1 False 0 True 1 ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter None of the mentioned canvas.create_line() create_line(canvas) line() None of the mentioned canvas.create_line() create_line(canvas) line() ANSWER DOWNLOAD EXAMIANS APP
Python All keywords in Python are in _________ None of the mentioned lower case Capitalized UPPER CASE None of the mentioned lower case Capitalized UPPER CASE ANSWER DOWNLOAD EXAMIANS APP