Python In order to store values in terms of key and value we use what Python core data type. list set dictionary tuple list set dictionary tuple ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of the following cannot be a variable? __init__ on in It __init__ on in It ANSWER DOWNLOAD EXAMIANS APP
Python In which of the following field, we can put our Button? Window All of the mentioned Frame Label Window All of the mentioned Frame Label 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 are the advantages of functions in python? Decomposing complex problems into simpler pieces All of the mentioned Improving clarity of the code Reducing duplication of code Decomposing complex problems into simpler pieces All of the mentioned Improving clarity of the code Reducing duplication of code 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(3, 5) list1.insert(2, 5) list1.append(3, 5) list1.add(3, 5) list1.insert(3, 5) list1.insert(2, 5) ANSWER DOWNLOAD EXAMIANS APP