Python Say s=”hello” what will be the return value of type(s) in Python? int str String bool int str String bool ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? None of the mentioned __a = 1 __str__ = 1 _a = 1 None of the mentioned __a = 1 __str__ = 1 _a = 1 ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango TypeError ValueError NameError SyntaxError TypeError ValueError NameError SyntaxError ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.append(3, 5) list1.add(3, 5) list1.insert(2, 5) list1.insert(3, 5) list1.append(3, 5) list1.add(3, 5) list1.insert(2, 5) list1.insert(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter None of the mentioned create_line(canvas) canvas.create_line() line() None of the mentioned create_line(canvas) canvas.create_line() line() ANSWER DOWNLOAD EXAMIANS APP
Python How many except statements can a try-except block have? more than zero one more than one zero more than zero one more than one zero ANSWER DOWNLOAD EXAMIANS APP