Python Which of the following is invalid variable in Python? __str__ = 1 __a = 1 _a = 1 None of the mentioned __str__ = 1 __a = 1 _a = 1 None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python What is the use of duck typing? No restriction on the type values that can be passed to a given method Makes the program code smaller More restriction on the type values that can be passed to a given method Less restriction on the type values that can be passed to a given method No restriction on the type values that can be passed to a given method Makes the program code smaller More restriction on the type values that can be passed to a given method Less restriction on the type values that can be passed to a given method ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? 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) list1.append(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] array list dictionary tuple array list dictionary tuple ANSWER DOWNLOAD EXAMIANS APP
Python Which Python is used by client to opens a TCP connection to hostname? s.accept() s.connect() All of the mentioned s.bind() s.accept() s.connect() All of the mentioned s.bind() ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of these in not a core data type? Class Dictionary Tuples Lists Class Dictionary Tuples Lists ANSWER DOWNLOAD EXAMIANS APP