Python In order to store values in terms of key and value we use what Python core data type. list dictionary set tuple list dictionary set tuple ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.append(5) list1.addLast(5) list1.addEnd(5) list1.add(5) list1.append(5) list1.addLast(5) list1.addEnd(5) list1.add(5) 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 Essential thing to create a window screen using tkinter python create a button All of the mentioned To define a geometry call tk() function create a button All of the mentioned To define a geometry call tk() function ANSWER DOWNLOAD EXAMIANS APP
Python Methods provided by Python for receiving and sending TCP messages. s.recvfrom(),s.sendto() Both (A) and (B) None of the mentioned s.recv(), s.send() s.recvfrom(),s.sendto() Both (A) and (B) None of the mentioned s.recv(), s.send() ANSWER DOWNLOAD EXAMIANS APP
Python What is the output of print 0.1 + 0.2 == 0.3 in python? False Machine dependent True Error False Machine dependent True Error ANSWER DOWNLOAD EXAMIANS APP