Python Which of the following blocks will be executed whether an exception is thrown or not? Assert finally except Else Assert finally except Else ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? from tkinter import * All of the mentioned import tkinter import tkinter as t from tkinter import * All of the mentioned import tkinter import tkinter as t ANSWER DOWNLOAD EXAMIANS APP
Python What arithmetic operators cannot be used with strings in Python? + * All of the mentioned – + * All of the mentioned – ANSWER DOWNLOAD EXAMIANS APP
Python To insert 5 to the third position in list1, we use which Python command? 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) list1.add(3, 5) ANSWER DOWNLOAD EXAMIANS APP
Python Which are Server Socket Methods provided by Python? s.bind() s.listen() s.accept() All of the mentioned s.bind() s.listen() s.accept() All of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following creates a pattern object? re.regex(str) re.assemble(str) re.create(str) re.compile(str) re.regex(str) re.assemble(str) re.create(str) re.compile(str) ANSWER DOWNLOAD EXAMIANS APP