NEW
Font size
WorksheetsGrade 8 A Python - GUI
Total questions: 15
Worksheet time: 11mins
What is the full form of GUI?
Graphic Unit Interface
Graphical User Interface
Graphic Unit Input
______________ library provides fast and easy way to create GUI applications in Python.
Tkinter
IbtikarMaker
Graph
___________ is the element of GUI.
Widget
Tabs
window
Choose the correct statement to display title.
window.title("My First Program")
window.title(My First Program)
window.title "My First Program"
Choose the correct statement to display the size of the window.
window.geometry(200x300)
window.geometry("200x300")
window.geometry" 200 x 300"
Choose the correct statement to import tkinter library.
from TKINTER import *
FROM TKINTER import *
from tkinter import *
Choose the correct code for using grid statement?
window.Grid (row= 1, column =1)
window.grid( row = 1 , column = 1)
window.GRID(row = 1 , column = 1)
Label , Button , Sliders are all examples of Widgets.
True
False
_________ symbol is use to display comments in python.
@
&
#
A GUI can be use for building games , apps like grade converter and calculator.
True
False
______________ is a pictorial representation of data.
Algorithm
Flow Chart
___________ symbol is use at start and end of a flowchart.
Is use for _____________.
Start and Stop
Decision
Process
Python is a _____________ Language.
High Level language
Low Level Language
Assembly language
Debugging is the process of removing an error in a program.
True
False
