Python Which of the following creates a pattern object? re.assemble(str) re.create(str) re.regex(str) re.compile(str) re.assemble(str) re.create(str) re.regex(str) re.compile(str) ANSWER DOWNLOAD EXAMIANS APP
Python Methods provided by Python for receiving and sending TCP messages. s.recv(), s.send() s.recvfrom(),s.sendto() None of the mentioned Both (A) and (B) s.recv(), s.send() s.recvfrom(),s.sendto() None of the mentioned Both (A) and (B) ANSWER DOWNLOAD EXAMIANS APP
Python In which of the following field, we can put our Button? Frame All of the mentioned Window Label Frame All of the mentioned Window Label ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of these in not a core data type? Class Lists Dictionary Tuples Class Lists Dictionary Tuples ANSWER DOWNLOAD EXAMIANS APP
Python Which Python keyword is used for function? Define Function Fun Def Define Function Fun Def ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(2, 5) list1.insert(3, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.insert(3, 5) list1.add(3, 5) list1.append(3, 5) ANSWER DOWNLOAD EXAMIANS APP