Python Which module in Python supports regular expressions? pyregex regex none of the mentioned re pyregex regex none of the mentioned re ANSWER DOWNLOAD EXAMIANS APP
Python Which of these about a dictionary is false? Dictionaries aren’t ordered Dictionaries are mutable The values of a dictionary can be accessed using keys The keys of a dictionary can be accessed using values Dictionaries aren’t ordered Dictionaries are mutable The values of a dictionary can be accessed using keys The keys of a dictionary can be accessed using values ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? When there is a deviation from the rules of a programming language, a semantic error is thrown If any exception is thrown in try block, else block is executed All raised standard exceptions must be handled in Python The standard exceptions are automatically imported into Python programs When there is a deviation from the rules of a programming language, a semantic error is thrown If any exception is thrown in try block, else block is executed All raised standard exceptions must be handled in Python The standard exceptions are automatically imported into Python programs ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following functions results in case insensitive matching? re.X re.I re.A re.U re.X re.I re.A re.U ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? False 1 True 0 False 1 True 0 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