Python How we import a tkinter in python program ? All of the mentioned from tkinter import * import tkinter as t import tkinter All of the mentioned from tkinter import * import tkinter as t import tkinter ANSWER DOWNLOAD EXAMIANS APP
Python What is the maximum possible length of an identifier allowed by Python? None of the mentioned 63 characters 31 characters 79 characters None of the mentioned 63 characters 31 characters 79 characters ANSWER DOWNLOAD EXAMIANS APP
Python In Python, which of these in not a core data type? Class Lists Dictionary Tuples Class Lists Dictionary Tuples ANSWER DOWNLOAD EXAMIANS APP
Python Which of these about a dictionary is false? The values of a dictionary can be accessed using keys Dictionaries are mutable Dictionaries aren’t ordered The keys of a dictionary can be accessed using values The values of a dictionary can be accessed using keys Dictionaries are mutable Dictionaries aren’t ordered The keys of a dictionary can be accessed using values ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? when no exception occurs when an exception occurs in to except block Always when an exception occurs when no exception occurs when an exception occurs in to except block Always when an exception occurs ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? False True 0 1 False True 0 1 ANSWER DOWNLOAD EXAMIANS APP