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 What error occurs when you execute the following Python code snippet? apple = mango ValueError TypeError NameError SyntaxError ValueError TypeError NameError SyntaxError ANSWER DOWNLOAD EXAMIANS APP
Python The expression a{5} will match _____________ characters with the previous regular expression. exactly 4 5 or less exactly 5 5 or more exactly 4 5 or less exactly 5 5 or more 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 If any exception is thrown in try block, else block is executed The standard exceptions are automatically imported into Python programs 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 If any exception is thrown in try block, else block is executed The standard exceptions are automatically imported into Python programs All raised standard exceptions must be handled in Python ANSWER DOWNLOAD EXAMIANS APP
Python What arithmetic operators cannot be used with strings in Python? All of the mentioned + – * All of the mentioned + – * ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter line() canvas.create_line() create_line(canvas) None of the mentioned line() canvas.create_line() create_line(canvas) None of the mentioned ANSWER DOWNLOAD EXAMIANS APP