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 All raised standard exceptions must be handled in Python The standard exceptions are automatically imported into Python programs If any exception is thrown in try block, else block is executed 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 The standard exceptions are automatically imported into Python programs If any exception is thrown in try block, else block is executed ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? import tkinter as t All of the mentioned from tkinter import * import tkinter import tkinter as t All of the mentioned from tkinter import * import tkinter ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? String bool int str String bool int str ANSWER DOWNLOAD EXAMIANS APP
Python Which of following Python Network/Internet modules supports HTTP protocol? urllib httplib All of the mentioned xmlrpclib urllib httplib All of the mentioned xmlrpclib ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? list1.insert(2, 5) list1.append(3, 5) list1.insert(3, 5) list1.add(3, 5) list1.insert(2, 5) list1.append(3, 5) list1.insert(3, 5) list1.add(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python In order to store values in terms of key and value we use what Python core data type. list tuple dictionary set list tuple dictionary set ANSWER DOWNLOAD EXAMIANS APP