Python Methods provided by Python for receiving and sending TCP messages. s.recvfrom(),s.sendto() s.recv(), s.send() Both (A) and (B) None of the mentioned s.recvfrom(),s.sendto() s.recv(), s.send() Both (A) and (B) None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which is the correct expression for power(xy ) in Python? x**y x^^y x^y None of the mentioned x**y x^^y x^y None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Invalid type Tuples of lists Array of tuples List of tuples Invalid type Tuples of lists Array of tuples List of tuples ANSWER DOWNLOAD EXAMIANS APP
Python An exception is ____________ a special function a module a standard module an object a special function a module a standard module an object ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(3, 5) list1.insert(2, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(3, 5) list1.insert(2, 5) list1.add(3, 5) list1.append(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? String str int bool String str int bool ANSWER DOWNLOAD EXAMIANS APP