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() All of the mentioned s.listen() s.accept() s.bind() All of the mentioned s.listen() s.accept() ANSWER DOWNLOAD EXAMIANS APP
Python What does the function re.match do? matches a pattern at the start of the string matches a pattern at any position in the string such a function does not exist none of the mentioned matches a pattern at the start of the string matches a pattern at any position in the string such a function does not exist none of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Python Say s=”hello” what will be the return value of type(s) in Python? int str String bool int str String bool 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 What arithmetic operators cannot be used with strings in Python? – + All of the mentioned * – + All of the mentioned * ANSWER DOWNLOAD EXAMIANS APP