Python All keywords in Python are in _________ UPPER CASE None of the mentioned lower case Capitalized UPPER CASE None of the mentioned lower case Capitalized ANSWER DOWNLOAD EXAMIANS APP
Python Which are Server Socket Methods provided by Python? s.listen() s.accept() All of the mentioned s.bind() s.listen() s.accept() All of the mentioned s.bind() ANSWER DOWNLOAD EXAMIANS APP
Python What error occurs when you execute the following Python code snippet? apple = mango ValueError SyntaxError TypeError NameError ValueError SyntaxError TypeError NameError ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following creates a pattern object? re.create(str) re.assemble(str) re.regex(str) re.compile(str) re.create(str) re.assemble(str) re.regex(str) re.compile(str) ANSWER DOWNLOAD EXAMIANS APP
Python What data type is the object below in Python? L = [1, 23, 'hello', 1] tuple list dictionary array tuple list dictionary array ANSWER DOWNLOAD EXAMIANS APP
Python How we import a tkinter in python program ? from tkinter import * import tkinter import tkinter as t All of the mentioned from tkinter import * import tkinter import tkinter as t All of the mentioned ANSWER DOWNLOAD EXAMIANS APP