Python What type of data is: a=[(1,1),(2,4),(3,9)]? List of tuples Tuples of lists Invalid type Array of tuples List of tuples Tuples of lists Invalid type Array of tuples ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? _a = 1 None of the mentioned __str__ = 1 __a = 1 _a = 1 None of the mentioned __str__ = 1 __a = 1 ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is the use of id() function in python? None of the mentioned All of the mentioned Every object doesn’t have a unique id id returns the identity of the object None of the mentioned All of the mentioned Every object doesn’t have a unique id id returns the identity of the object ANSWER DOWNLOAD EXAMIANS APP
Python In order to store values in terms of key and value we use what Python core data type. list set tuple dictionary list set tuple dictionary 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 Say s=”hello” what will be the return value of type(s) in Python? bool int str String bool int str String ANSWER DOWNLOAD EXAMIANS APP