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(2, 5) list1.insert(3, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.insert(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following creates a pattern object? re.compile(str) re.assemble(str) re.regex(str) re.create(str) re.compile(str) re.assemble(str) re.regex(str) re.create(str) ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.match do? matches a pattern at any position in the string such a function does not exist none of the mentioned matches a pattern at the start of the string matches a pattern at any position in the string such a function does not exist none of the mentioned matches a pattern at the start of the string ANSWER DOWNLOAD EXAMIANS APP
Python In order to store values in terms of key and value we use what Python core data type. set list tuple dictionary set list tuple dictionary 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 such a function does not exist none of the mentioned matches a pattern at the start of the string matches a pattern at any position in the string such a function does not exist none of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Methods provided by Python for receiving and sending TCP messages. 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() None of the mentioned ANSWER DOWNLOAD EXAMIANS APP