Python Say s=”hello” what will be the return value of type(s) in Python? str bool String int str bool String int ANSWER DOWNLOAD EXAMIANS APP
Python All keywords in Python are in _________ None of the mentioned UPPER CASE lower case Capitalized None of the mentioned UPPER CASE lower case Capitalized ANSWER DOWNLOAD EXAMIANS APP
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 In Python, which of these in not a core data type? Tuples Class Lists Dictionary Tuples Class Lists Dictionary 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
Python To insert 5 to the third position in list1, we use which Python command? 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) list1.insert(2, 5) ANSWER DOWNLOAD EXAMIANS APP