Python To insert 5 to the third position in list1, we use which Python command? list1.add(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.insert(3, 5) list1.add(3, 5) list1.append(3, 5) list1.insert(2, 5) list1.insert(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python Correct way to draw a line in canvas tkinter create_line(canvas) canvas.create_line() line() None of the mentioned create_line(canvas) canvas.create_line() line() None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which are the advantages of functions in python? All of the mentioned Improving clarity of the code Decomposing complex problems into simpler pieces Reducing duplication of code All of the mentioned Improving clarity of the code Decomposing complex problems into simpler pieces Reducing duplication of code ANSWER DOWNLOAD EXAMIANS APP
Python Which are Server Socket Methods provided by Python? s.listen() s.bind() s.accept() All of the mentioned s.listen() s.bind() s.accept() All of the mentioned 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 The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ ampersand (&) newline caret (^) percentage symbol (%) ampersand (&) newline caret (^) percentage symbol (%) ANSWER DOWNLOAD EXAMIANS APP