Python Which of the following is the use of id() function in python? Every object doesn’t have a unique id id returns the identity of the object None of the mentioned All of the mentioned Every object doesn’t have a unique id id returns the identity of the object None of the mentioned All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following blocks will be executed whether an exception is thrown or not? except Assert Else finally except Assert Else finally ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango TypeError ValueError SyntaxError NameError TypeError ValueError SyntaxError NameError ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? when no exception occurs when an exception occurs when an exception occurs in to except block Always when no exception occurs when an exception occurs when an exception occurs in to except block Always ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 2 0 1 4 2 0 1 4 ANSWER DOWNLOAD EXAMIANS APP
Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ newline ampersand (&) caret (^) percentage symbol (%) newline ampersand (&) caret (^) percentage symbol (%) ANSWER DOWNLOAD EXAMIANS APP