Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 0 2 4 1 0 2 4 1 ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? Else finally Assert except Else finally Assert except ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango TypeError SyntaxError ValueError NameError TypeError SyntaxError ValueError NameError ANSWER DOWNLOAD EXAMIANS APP
Python In order to store values in terms of key and value we use what Python core data type. list set tuple dictionary list set tuple dictionary ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? All raised standard exceptions must be handled in Python The standard exceptions are automatically imported into Python programs 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 All raised standard exceptions must be handled in Python The standard exceptions are automatically imported into Python programs 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 ANSWER DOWNLOAD EXAMIANS APP
Python Which one of these is used for floor division in Python? / // None of the mentioned % / // None of the mentioned % ANSWER DOWNLOAD EXAMIANS APP