Python Say s=”hello” what will be the return value of type(s) in Python? String int bool str String int bool str ANSWER DOWNLOAD EXAMIANS APP
Python Essential thing to create a window screen using tkinter python create a button To define a geometry All of the mentioned call tk() function create a button To define a geometry All of the mentioned call tk() function ANSWER DOWNLOAD EXAMIANS APP
Python Which is the correct expression for power(xy ) in Python? x**y x^^y None of the mentioned x^y x**y x^^y None of the mentioned x^y ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following functions results in case insensitive matching? re.X re.A re.U re.I re.X re.A re.U re.I ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] dictionary list tuple array dictionary list tuple array ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 1 2 4 0 1 2 4 0 ANSWER DOWNLOAD EXAMIANS APP