Python What does the function re.search do? matches a pattern at any position in the string none of the mentioned matches a pattern at the start of the string such a function does not exist matches a pattern at any position in the string none of the mentioned matches a pattern at the start of the string such a function does not exist 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 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 When there is a deviation from the rules of a programming language, a semantic error is thrown ANSWER DOWNLOAD EXAMIANS APP
Python Is Python case sensitive when dealing with identifiers? machine dependent yes None of the mentioned no machine dependent yes None of the mentioned no ANSWER DOWNLOAD EXAMIANS APP
Python Methods provided by Python for receiving and sending TCP messages. None of the mentioned s.recv(), s.send() s.recvfrom(),s.sendto() Both (A) and (B) None of the mentioned s.recv(), s.send() s.recvfrom(),s.sendto() Both (A) and (B) ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? 0 1 True False 0 1 True False ANSWER DOWNLOAD EXAMIANS APP
Python Why are local variable names beginning with an underscore discouraged in Python Programming? they slow down execution they confuse the interpreter they are used to indicate global variables they are used to indicate a private variables of a class they slow down execution they confuse the interpreter they are used to indicate global variables they are used to indicate a private variables of a class ANSWER DOWNLOAD EXAMIANS APP