Python To insert 5 to the third position in list1, we use which Python command? list1.add(3, 5) list1.append(3, 5) list1.insert(3, 5) list1.insert(2, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(3, 5) list1.insert(2, 5) ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.search do? matches a pattern at the start of the string matches a pattern at any position in the string none of the mentioned such a function does not exist matches a pattern at the start of the string matches a pattern at any position in the string none of the mentioned such a function does not exist ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is not a standard exception in Python? NameError ValueError AssignmentError IOError NameError ValueError AssignmentError IOError ANSWER DOWNLOAD EXAMIANS APP
Python Methods provided by Python for receiving and sending TCP messages. s.recv(), s.send() 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() ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ ampersand (&) newline caret (^) percentage symbol (%) ampersand (&) newline caret (^) percentage symbol (%) ANSWER DOWNLOAD EXAMIANS APP
Python Which of following Python Network/Internet modules supports HTTP protocol? All of the mentioned xmlrpclib httplib urllib All of the mentioned xmlrpclib httplib urllib ANSWER DOWNLOAD EXAMIANS APP