Python Which of the following statements is true? All raised standard exceptions must be handled in Python When there is a deviation from the rules of a programming language, a semantic error is thrown The standard exceptions are automatically imported into Python programs If any exception is thrown in try block, else block is executed All raised standard exceptions must be handled in Python When there is a deviation from the rules of a programming language, a semantic error is thrown The standard exceptions are automatically imported into Python programs If any exception is thrown in try block, else block is executed ANSWER DOWNLOAD EXAMIANS APP
Python Why are local variable names beginning with an underscore discouraged in Python Programming? they are used to indicate global variables they confuse the interpreter they slow down execution they are used to indicate a private variables of a class they are used to indicate global variables they confuse the interpreter they slow down execution they are used to indicate a private variables of a class ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? when an exception occurs when no exception occurs Always when an exception occurs in to except block when an exception occurs when no exception occurs Always when an exception occurs in to except block ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 0 1 4 2 0 1 4 2 ANSWER DOWNLOAD EXAMIANS APP
Python The expression a{5} will match _____________ characters with the previous regular expression. exactly 5 exactly 4 5 or less 5 or more exactly 5 exactly 4 5 or less 5 or more ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following results in a SyntaxError? ‘”Once upon a time…”, she said.’ ”’That’s okay”’ “He said, ‘Yes!'” ‘3\’ ‘”Once upon a time…”, she said.’ ”’That’s okay”’ “He said, ‘Yes!'” ‘3\’ ANSWER DOWNLOAD EXAMIANS APP