Python Which are Server Socket Methods provided by Python? s.accept() s.listen() All of the mentioned s.bind() s.accept() s.listen() All of the mentioned s.bind() ANSWER DOWNLOAD EXAMIANS APP
Python What is the maximum possible length of an identifier allowed by Python? None of the mentioned 79 characters 31 characters 63 characters None of the mentioned 79 characters 31 characters 63 characters ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.match do? none of the mentioned matches a pattern at any position in the string matches a pattern at the start of the string such a function does not exist none of the mentioned matches a pattern at any position in the string matches a pattern at the start of the string such a function does not exist ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(2, 5) list1.append(3, 5) list1.insert(3, 5) list1.add(3, 5) list1.insert(2, 5) list1.append(3, 5) list1.insert(3, 5) list1.add(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? String bool str int String bool str int ANSWER DOWNLOAD EXAMIANS APP
Python What is the output of print 0.1 + 0.2 == 0.3 in python? False Error True Machine dependent False Error True Machine dependent ANSWER DOWNLOAD EXAMIANS APP