Python Which Python is used by client to opens a TCP connection to hostname? s.bind() s.accept() All of the mentioned s.connect() s.bind() s.accept() All of the mentioned s.connect() ANSWER DOWNLOAD EXAMIANS APP
Python The expression a{5} will match _____________ characters with the previous regular expression. exactly 5 5 or more exactly 4 5 or less exactly 5 5 or more exactly 4 5 or less ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ newline caret (^) ampersand (&) percentage symbol (%) newline caret (^) ampersand (&) percentage symbol (%) ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.search 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 Which of the following results in a SyntaxError? ”’That’s okay”’ ‘3\’ ‘”Once upon a time…”, she said.’ “He said, ‘Yes!'” ”’That’s okay”’ ‘3\’ ‘”Once upon a time…”, she said.’ “He said, ‘Yes!'” ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? str int String bool str int String bool ANSWER DOWNLOAD EXAMIANS APP