Python Which of the following results in a SyntaxError? ”’That’s okay”’ ‘3\’ “He said, ‘Yes!'” ‘”Once upon a time…”, she said.’ ”’That’s okay”’ ‘3\’ “He said, ‘Yes!'” ‘”Once upon a time…”, she said.’ ANSWER DOWNLOAD EXAMIANS APP
Python Is Python case sensitive when dealing with identifiers? yes no machine dependent None of the mentioned yes no machine dependent None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.addLast(5) list1.addEnd(5) list1.append(5) list1.add(5) list1.addLast(5) list1.addEnd(5) list1.append(5) list1.add(5) ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following statements is true? 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 All raised standard exceptions must be handled in Python ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.search do? such a function does not exist matches a pattern at any position in the string matches a pattern at the start of the string none of the mentioned such a function does not exist matches a pattern at any position in the string matches a pattern at the start of the string none of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which is the correct expression for power(xy ) in Python? None of the mentioned x^y x^^y x**y None of the mentioned x^y x^^y x**y ANSWER DOWNLOAD EXAMIANS APP