Python Methods provided by Python for receiving and sending TCP messages. s.recv(), s.send() None of the mentioned s.recvfrom(),s.sendto() Both (A) and (B) s.recv(), s.send() None of the mentioned s.recvfrom(),s.sendto() Both (A) and (B) ANSWER DOWNLOAD EXAMIANS APP
Python How many except statements can a try-except block have? zero one more than one more than zero zero one more than one more than zero ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] tuple dictionary array list tuple dictionary array list ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Tuples of lists Invalid type List of tuples Array of tuples Tuples of lists Invalid type List of tuples Array of tuples ANSWER DOWNLOAD EXAMIANS APP
Python What is the use of duck typing? Less restriction on the type values that can be passed to a given method More restriction on the type values that can be passed to a given method No restriction on the type values that can be passed to a given method Makes the program code smaller Less restriction on the type values that can be passed to a given method More restriction on the type values that can be passed to a given method No restriction on the type values that can be passed to a given method Makes the program code smaller ANSWER DOWNLOAD EXAMIANS APP
Python Which are Server Socket Methods provided by Python? s.bind() All of the mentioned s.accept() s.listen() s.bind() All of the mentioned s.accept() s.listen() ANSWER DOWNLOAD EXAMIANS APP