Python Say s=”hello” what will be the return value of type(s) in Python? String str bool int String str bool int 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 The standard exceptions are automatically imported into Python programs All raised standard exceptions must be handled in Python If any exception is thrown in try block, else block is executed 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 All raised standard exceptions must be handled in Python If any exception is thrown in try block, else block is executed ANSWER DOWNLOAD EXAMIANS APP
Python Which Python keyword is used for function? Fun Function Def Define Fun Function Def Define ANSWER DOWNLOAD EXAMIANS APP
Python How many except statements can a try-except block have? more than zero more than one zero one more than zero more than one zero one ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] dictionary list tuple array dictionary list tuple array ANSWER DOWNLOAD EXAMIANS APP
Python Which of these about a dictionary is false? The keys of a dictionary can be accessed using values The values of a dictionary can be accessed using keys Dictionaries aren’t ordered Dictionaries are mutable The keys of a dictionary can be accessed using values The values of a dictionary can be accessed using keys Dictionaries aren’t ordered Dictionaries are mutable ANSWER DOWNLOAD EXAMIANS APP