Config() in Python Tkinter are used for
1.destroy the widget
2.place the widget
3.change property of the widget
4.configure the widget
Correct way to draw a line in canvas tkinter ?
1.line()
2.canvas.create_line()
3.create_line(canvas)
4.None of the above
Creating line are come in which type of thing ?
1.GUI
2.Canvas
3.Both of the above
4.None of the above
Essential thing to create a window screen using tkinter python?
1.call tk() function
2.create a button
3.To define a geometry
4.All of the above
fg in tkinter widget is stands for ?
1.foreground
2.background
3.forgap
4.None of the above
For user Entry data, which widget we use in tkinter ?
1.Entry
2.Text
3.Both of the above
4.None of the above
For what purpose, the bg is used in Tkinter widget ?
1.To change the direction of widget
2.To change the size of widget
3.To change the color of widget
4.To change the background of widget
From which keyword we import the Tkinter in program?
1.call
2.from
3.import
4.All of the above
GUI stands for
1.Graph user interaction
2.Global user interaction
3.Graphical user interface
4.Graphical user interaction
How pack() function works on tkinter widget ?
1.According to x,y coordinate
2.According to row and column vise
3.According to left,right,up,down
4.None of the above
How the grid() function put the widget on the screen ?
1.According to x,y coordinate
2.According to row and column vise
3.According to left,right,up,down
4.None of the above
How the place() function put the widget on the screen ?
1.According to x,y coordinate
2.According to row and column vise
3.According to left,right,up,down
4.None of the above
How we import a tkinter in python program ?
1.import tkinter
2.import tkinter as t
3.from tkinter import *
4.All of the above
How we install tkinter in system ?
1.pip install python
2.tkinter install
3.pip install tkinter
4.tkinter pip install
In which of the following field, we can put our Button?
1.Window
2.Frame
3.Label
4.All of the above
It is possible to draw a circle directly in Tkinter canvas ?
1.Yes
2.No
3.No(but possible by oval)
4.None of the above
Minimum number of argument we pass in a function to create a rectangle using canvas tkinter ?
1.2
2.4
3.6
4.5
Minimum number of argument we require to pass in a function to create a line ?
1.2
2.4
3.6
4.8
Screen inside another screen is possible by creating
1.Another window
2.Frames
3.Buttons
4.Labels
title() is used for
1.give a title name to the window
2.give a title name to the Button
3.give a title name to the Widet
4.None of the above
Tkinter tool in python provide the
1.Database
2.OS commands
3.GUI
4.All of the above
To change the color of the text in the Button widget, what we use ?
1.bg
2.fg
3.color
4.cchng
To change the property of the widget after the declaration of widget, what e use ?
1.mainloop() function
2.config() function
3.pack() function
4.title() function
To delete any widget from the screen which function we use ?
1.stop()
2.delete()
3.destroy()
4.break()
To get the multiple line user data, which widget we use ?
1.Entry
2.Text
3.Both of the above
4.None of the above
To hold the screen what we use ?
1.mainloop() function
2.pause() function
3.Stop() function
4.None of the above
use of the angle attribute are on which widget ?
1.line
2.text
3.Button
4.All of the above
What is the correct syntax of destroy in tkinter ?
1.destroy(object)
2.object.destroy()
3.object(destroy)
4.delete(object)
What is the correct way to use the config() function in tkinter ?
1.config(object,property)
2.object.config(property)
3.config(property)
4.object.property
What is the right way to set the title of the window ?
1.title(win,mytitle)
2.win.title(mytitle)
3.title(mytitle).win
4.None of the above
What is the Syntax to create a Frame ?
1.Frame(window,options)
2.win.frame(options)
3.Both of the above
4.None of the above
What is the use of the Entry widget in tkinter python ?
1.Display text on the window
2.Display Check button on window
3.Create a user data entry field
4.All of the above
What is the use of the mainloop() in Python Tkinter ?
1.To create a window screen
2.To Destroy the window screen
3.To Hold the window Screen
4.None of the above
What is the use of the pack() function for the tkinter widget ?
1.To pack the widget on the screen
2.To define a size of the widget
3.To perform a task by a widget
4.To destroy the widget
What is the use of the place() function in tkinter Python ?
1.To put the widget on the screen
2.To put the widget on the Button
3.To put the widget on the background
4.To destroy the widget
what is Tk() in tkinter python ?
1.It is function
2.It is constructor
3.It is widget
4.All of the above
What is widget in Tkinter GUI in python
1.That will display on the screen
2.That will work in background
3.Both of the above
4.None of the above
What we use to change the back ground color any widget ?
1.background
2.fg
3.bg
4.bground
Which of th following is used to call a function by the Button widget in tkinter python ?
1.call
2.cammand
3.contact
4.All of the above
Which of the correct way to set the geometry of the window ?
1.geometry(x,y)
2.geometry(300x400)
3.geometry(300,400)
4.None of the above
Which of the following command are used to install the tkinter ?
1.pip install Tkinter
2.pip install python tkinter
3.pip install tkinter python
4.None of the above
Which of the following function are used to get the data from the Entry field in Python Tkinter ?
1.get()
2.Gettext()
3.Getdata()
4.All of the above
Which of the following is clickable in GUI programming ?
1.Button
2.Checkbutton
3.Lable
4.1 and 2
Which of the following is correct ?
1.GUI is the part of the canvas
2.canvas is the part of the GUI
3.Both of the above
4.None of the above
Which of the following is not correct way to import the tkinter in program ?
1.import tkinter from *
2.import tkinter as t
3.import tkinter as p
4.All of the above
Which of the following is used to put the widget at the screen ?
1.pack()
2.place()
3.grid()
4.All of the above
Which of the following tool provides a GUI in python
1.Numpy
2.Tkinter
3.Scipy
4.Opencv
Which of the following we can able to delete using destroy() function ?
1.Button
2.Label
3.Frame
4.All of the above
Which of the following we can draw using canvas in tkinter ?
1.Line
2.Rectangle
3.oval
4.All of the above
Which widget are used to get the data from the user ?
1.Button
2.Label
3.Entry
4.None of the above