Python Which of the following functions results in case insensitive matching? re.I re.X re.A re.U re.I re.X re.A re.U ANSWER DOWNLOAD EXAMIANS APP
Python Methods provided by Python for receiving and sending TCP messages. None of the mentioned Both (A) and (B) s.recvfrom(),s.sendto() s.recv(), s.send() None of the mentioned Both (A) and (B) s.recvfrom(),s.sendto() s.recv(), s.send() ANSWER DOWNLOAD EXAMIANS APP
Python Which are Server Socket Methods provided by Python? s.bind() All of the mentioned s.accept() s.listen() s.bind() All of the mentioned s.accept() s.listen() ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is invalid variable in Python? None of the mentioned __a = 1 _a = 1 __str__ = 1 None of the mentioned __a = 1 _a = 1 __str__ = 1 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 Say s=”hello” what will be the return value of type(s) in Python? bool int String str bool int String str ANSWER DOWNLOAD EXAMIANS APP