Python The character Dot (that is, ‘.’) in the default mode, matches any character other than _____________ caret (^) percentage symbol (%) ampersand (&) newline caret (^) percentage symbol (%) ampersand (&) newline ANSWER DOWNLOAD EXAMIANS APP
Python When will the else part of try-except-else be executed? Always when no exception occurs when an exception occurs when an exception occurs in to except block Always when no exception occurs when an exception occurs when an exception occurs in to except block ANSWER DOWNLOAD EXAMIANS APP
Python How many except statements can a try-except block have? more than zero more than one one zero more than zero more than one one zero ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? import tkinter as t from tkinter import * All of the mentioned import tkinter import tkinter as t from tkinter import * All of the mentioned import tkinter ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following is the use of id() function in python? None of the mentioned Every object doesn’t have a unique id id returns the identity of the object All of the mentioned None of the mentioned Every object doesn’t have a unique id id returns the identity of the object All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python To add a new element to a list we use which Python command? list1.addLast(5) list1.addEnd(5) list1.add(5) list1.append(5) list1.addLast(5) list1.addEnd(5) list1.add(5) list1.append(5) ANSWER DOWNLOAD EXAMIANS APP