Python Which one of these is used for floor division in Python? / % // None of the mentioned / % // None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which are Server Socket Methods provided by Python? All of the mentioned s.bind() s.accept() s.listen() All of the mentioned s.bind() s.accept() s.listen() 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 Methods provided by Python for receiving and sending TCP messages. s.recvfrom(),s.sendto() Both (A) and (B) s.recv(), s.send() None of the mentioned s.recvfrom(),s.sendto() Both (A) and (B) s.recv(), s.send() None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] array list dictionary tuple array list dictionary tuple ANSWER DOWNLOAD EXAMIANS APP