Python Which Python is used by client to opens a TCP connection to hostname? s.accept() s.connect() All of the mentioned s.bind() s.accept() s.connect() All of the mentioned s.bind() ANSWER DOWNLOAD EXAMIANS APP
Python How many except statements can a try-except block have? one more than zero zero more than one one more than zero zero more than one ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? Reducing duplication of code Decomposing complex problems into simpler pieces Improving clarity of the code All of the mentioned Reducing duplication of code Decomposing complex problems into simpler pieces Improving clarity of the code All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ percentage symbol (%) ampersand (&) newline caret (^) percentage symbol (%) ampersand (&) newline caret (^) ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? 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) list1.insert(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python What type of data is: a=[(1,1),(2,4),(3,9)]? Tuples of lists List of tuples Invalid type Array of tuples Tuples of lists List of tuples Invalid type Array of tuples ANSWER DOWNLOAD EXAMIANS APP