How we import a tkinter in python program ? import tkinter as t All of the mentioned import tkinter from tkinter import * TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following results in a SyntaxError? “He said, ‘Yes!'” ‘3\’ ”’That’s okay”’ ‘”Once upon a time…”, she said.’ TRUE ANSWER : ? YOUR ANSWER : ?
Which one of these is used for floor division in Python? / % // None of the mentioned TRUE ANSWER : ? YOUR ANSWER : ?
Essential thing to create a window screen using tkinter python call tk() function create a button To define a geometry All of the mentioned TRUE ANSWER : ? YOUR ANSWER : ?
In Python, which of the following cannot be a variable? on __init__ It in TRUE ANSWER : ? YOUR ANSWER : ?
An exception is ____________ a module a special function an object a standard module TRUE ANSWER : ? YOUR ANSWER : ?
Correct way to draw a line in canvas tkinter line() canvas.create_line() create_line(canvas) None of the mentioned TRUE ANSWER : ? YOUR ANSWER : ?
Which are Server Socket Methods provided by Python? All of the mentioned s.bind() s.accept() s.listen() TRUE ANSWER : ? YOUR ANSWER : ?
Which are the advantages of functions in python? Reducing duplication of code Improving clarity of the code Decomposing complex problems into simpler pieces All of the mentioned TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following creates a pattern object? re.compile(str) re.assemble(str) re.regex(str) re.create(str) TRUE ANSWER : ? YOUR ANSWER : ?