Python In Python, which of these in not a core data type? Class Dictionary Tuples Lists Class Dictionary Tuples Lists ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is not a standard exception in Python? ValueError IOError NameError AssignmentError ValueError IOError NameError AssignmentError ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? from tkinter import * All of the mentioned import tkinter as t import tkinter from tkinter import * All of the mentioned import tkinter as t import tkinter ANSWER DOWNLOAD EXAMIANS APP
Python Suppose list1 is [3, 4, 5, 20, 5], what is list1.index(5) return in Python? 2 4 1 0 2 4 1 0 ANSWER DOWNLOAD EXAMIANS APP
Python In Python GUI programming, the method that leaves an impression of a turtle shape at the current location position() stamp() All of the mentioned shape() position() stamp() All of the mentioned shape() ANSWER DOWNLOAD EXAMIANS APP
Python Why are local variable names beginning with an underscore discouraged in Python Programming? they are used to indicate global variables they confuse the interpreter they are used to indicate a private variables of a class they slow down execution they are used to indicate global variables they confuse the interpreter they are used to indicate a private variables of a class they slow down execution ANSWER DOWNLOAD EXAMIANS APP