Python What is the output of print 0.1 + 0.2 == 0.3 in python? False Machine dependent Error True False Machine dependent Error True ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? Decomposing complex problems into simpler pieces All of the mentioned Improving clarity of the code Reducing duplication of code Decomposing complex problems into simpler pieces All of the mentioned Improving clarity of the code Reducing duplication of code ANSWER DOWNLOAD EXAMIANS APP
Python Which module in Python supports regular expressions? re pyregex none of the mentioned regex re pyregex none of the mentioned regex ANSWER DOWNLOAD EXAMIANS APP
Python The expression a{5} will match _____________ characters with the previous regular expression. exactly 5 exactly 4 5 or more 5 or less exactly 5 exactly 4 5 or more 5 or less ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ caret (^) percentage symbol (%) newline ampersand (&) caret (^) percentage symbol (%) newline ampersand (&) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? Else finally except Assert Else finally except Assert ANSWER DOWNLOAD EXAMIANS APP