Python Say s=”hello” what will be the return value of type(s) in Python? bool String int str bool String int str ANSWER DOWNLOAD EXAMIANS APP
Python In order to store values in terms of key and value we use what Python core data type. dictionary list set tuple dictionary list set tuple ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following functions results in case insensitive matching? re.U re.X re.I re.A re.U re.X re.I re.A 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
Python Which of the following statements is true? All raised standard exceptions must be handled in Python If any exception is thrown in try block, else block is executed 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 All raised standard exceptions must be handled in Python If any exception is thrown in try block, else block is executed 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 ANSWER DOWNLOAD EXAMIANS APP
Python How many except statements can a try-except block have? one zero more than zero more than one one zero more than zero more than one ANSWER DOWNLOAD EXAMIANS APP