Multiple Choice
Given the following code,which line defines the size of the window?
A) self.main_window = tkinter.Tk()
B) self.canvas = tkinter.Canvas(self.main_window,width=200, height=200)
C) self.canvas.create_rectangle(30,30, 175, 175)
D) shape = myShape()
Correct Answer:

Verified
Correct Answer:
Verified
Q4: In an event-driven environment,the user interacts with<br>A)
Q5: Python does not have GUI programming features
Q6: The Entry widget's get method retrieves either
Q7: Which widget will display multiple lines of
Q8: In a(n)_ interface,the user can determine the
Q10: Programs that use tkinter do not always
Q11: _ are small windows that display information
Q12: Since GUI programs respond to the actions
Q13: What are the items that appear on
Q14: A _ program is an event-driven program.<br>A)