Worksheetstkinter quiz
Total questions: 10
Worksheet time: 5mins
Is a form of user interface that allows users to interact with electronic devices through graphical icons and audio indicator such as primary notation, instead of text-based UIs, typed command labels or text navigation.
Python
G.U.I
IDE
IDLE
This library provides a powerful object-oriented interface to the GUI toolkit.
Pygames
PyGUI
tthinker
tkinter
what is the widget been programmed?
if else
messagebox
label
button
what is the widget been programmed?
text
window title
label
button
what is the correct execution of the code as seen in the picture?
def clicked():
lbl.configure(text="Button was clicked !!")
def pindot(): lbl.configure(text="Button was clicked !!")
def clicked(): lbl.configurate(text="Button was clicked !!")
def clicked(): button.configure(text="Button was clicked !!")
what is the correct execution of the code as seen in the picture?
lbl = label(window, text="Hello")
lbl = Label(window, text="Hello")
lbl = Text(window, text="Hello")
lbl = txt(window, text="Hello")
what is the widget been programmed?
radiobutton
selectbox
combobox
checkbox
what is the widget been programmed?
radiobutton
button
combobox
checkbox
what is the widget been programmed?
message box
info message
alert box
message content
what is the correct code for the picture?
btn = Button(window, text="Click Me", bg="org", fg="rd")
btn = Button(window, text="Click Me", bg="blue", fg="red")
btn = Button(window, text="Click Me", bg="orange", fg="red")
btn = Button(window, text="Click Me", bg="red", fg="orange")
