Python To insert 5 to the third position in list1, we use which Python command? 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) list1.append(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] array tuple list dictionary array tuple list dictionary ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 4 0 2 1 4 0 2 1 ANSWER DOWNLOAD EXAMIANS APP
Python What is the use of duck typing? Makes the program code smaller More 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 Less 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 No 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 Which Python is used by client to opens a TCP connection to hostname? s.connect() All of the mentioned s.bind() s.accept() s.connect() All of the mentioned s.bind() s.accept() ANSWER DOWNLOAD EXAMIANS APP
Python What arithmetic operators cannot be used with strings in Python? All of the mentioned – * + All of the mentioned – * + ANSWER DOWNLOAD EXAMIANS APP