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 is the output of print 0.1 + 0.2 == 0.3 in python? Machine dependent True Error False Machine dependent True Error False ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] array dictionary tuple list array dictionary tuple list ANSWER DOWNLOAD EXAMIANS APP
Python Python MRO concept is Method Resetting Order None of the mentioned Method Recursion Order Method Resolution Order Method Resetting Order None of the mentioned Method Recursion Order Method Resolution Order ANSWER DOWNLOAD EXAMIANS APP
Python The expression a{5} will match _____________ characters with the previous regular expression. 5 or less 5 or more exactly 5 exactly 4 5 or less 5 or more exactly 5 exactly 4 ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.addLast(5) list1.add(5) list1.addEnd(5) list1.append(5) list1.addLast(5) list1.add(5) list1.addEnd(5) list1.append(5) ANSWER DOWNLOAD EXAMIANS APP