Q22
How do you add an image to a Tkinter application?
A.
add_image()
B.
image.insert()
C.
Label(image=...)
AnswerD.
ImageWidget(image=...)
Answer: Option C
Solution
Answer: Option C
Solution:
The Label(image=...) syntax is used to add an image to a Tkinter application.