Python Which module in Python supports regular expressions? none of the mentioned re pyregex regex none of the mentioned re pyregex regex ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(2, 5) list1.append(3, 5) list1.insert(3, 5) list1.add(3, 5) list1.insert(2, 5) list1.append(3, 5) list1.insert(3, 5) list1.add(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python How many except statements can a try-except block have? zero more than zero one more than one zero more than zero one more than one ANSWER DOWNLOAD EXAMIANS APP
Python When is the finally block executed? only if some condition that has been specified is satisfied when there is an exception when there is no exception always only if some condition that has been specified is satisfied when there is an exception when there is no exception always ANSWER DOWNLOAD EXAMIANS APP
Python Methods provided by Python for receiving and sending TCP messages. s.recv(), s.send() Both (A) and (B) s.recvfrom(),s.sendto() None of the mentioned s.recv(), s.send() Both (A) and (B) s.recvfrom(),s.sendto() None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which is the correct expression for power(xy ) in Python? x^^y None of the mentioned x**y x^y x^^y None of the mentioned x**y x^y ANSWER DOWNLOAD EXAMIANS APP