Python Which Python is used by client to opens a TCP connection to hostname? All of the mentioned s.connect() s.bind() s.accept() All of the mentioned s.connect() s.bind() s.accept() 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.append(5) list1.addEnd(5) list1.addLast(5) list1.add(5) list1.append(5) list1.addEnd(5) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following creates a pattern object? re.compile(str) re.regex(str) re.create(str) re.assemble(str) re.compile(str) re.regex(str) re.create(str) re.assemble(str) ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango SyntaxError NameError TypeError ValueError SyntaxError NameError TypeError ValueError ANSWER DOWNLOAD EXAMIANS APP
Python Which module in Python supports regular expressions? none of the mentioned pyregex regex re none of the mentioned pyregex regex re ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? List of tuples Tuples of lists Array of tuples Invalid type List of tuples Tuples of lists Array of tuples Invalid type ANSWER DOWNLOAD EXAMIANS APP