Python How we import a tkinter in python program ? import tkinter as t import tkinter from tkinter import * All of the mentioned import tkinter as t import tkinter from tkinter import * All of the mentioned 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 is invalid variable in Python? _a = 1 None of the mentioned __a = 1 __str__ = 1 _a = 1 None of the mentioned __a = 1 __str__ = 1 ANSWER DOWNLOAD EXAMIANS APP
Python What is the result of cmp(3, 1) in python? True 0 1 False True 0 1 False ANSWER DOWNLOAD EXAMIANS APP
Python Which of the following results in a SyntaxError? “He said, ‘Yes!'” ‘”Once upon a time…”, she said.’ ‘3\’ ”’That’s okay”’ “He said, ‘Yes!'” ‘”Once upon a time…”, she said.’ ‘3\’ ”’That’s okay”’ ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.search do? matches a pattern at the start of the string matches a pattern at any position in the string none of the mentioned such a function does not exist matches a pattern at the start of the string matches a pattern at any position in the string none of the mentioned such a function does not exist ANSWER DOWNLOAD EXAMIANS APP