IT 117: Intermediate to Scripting
Answers to Class 25 Ungraded Quiz
-
What is the name of the module we use to talk to the
windowing system of the operating system?
Tkinter
-
What is the constructor we use to create a graphic
object using the module above?
Tk
-
What is the object created by the constructor?
the main or root window
-
What method of the above module must you call to have an
empty window appear?
mainloop
-
What method do you call to set the title of the window?
title
-
What method do you call to set the size and position of
a window?
geometry
-
What do we call the control elements used in graphical
programming?
widgets
-
What is the object used to display text or images?
Label
-
After you create an control element object, what method
must you call to make it visible?
pack