Exploring Basic Tkinter Concepts

Exploring Basic Tkinter Concepts

12th Grade

6 Qs

quiz-placeholder

Similar activities

MOAC Word 2016 Lesson 3

MOAC Word 2016 Lesson 3

8th - 12th Grade

10 Qs

Bibliothèque Tkinter avec Python

Bibliothèque Tkinter avec Python

12th Grade

10 Qs

Exploring Python Tkinter

Exploring Python Tkinter

12th Grade

8 Qs

Creating Widgets in Tkinter with Python

Creating Widgets in Tkinter with Python

12th Grade

10 Qs

Phyton Review Lesson 11-Flash Card Closing

Phyton Review Lesson 11-Flash Card Closing

12th Grade - Professional Development

5 Qs

Lesson 4 Quiz

Lesson 4 Quiz

6th - 12th Grade

10 Qs

Microsoft Word 2016 - Unit 1

Microsoft Word 2016 - Unit 1

10th Grade - University

10 Qs

Ch 1-10 Odd

Ch 1-10 Odd

1st Grade - University

10 Qs

Exploring Basic Tkinter Concepts

Exploring Basic Tkinter Concepts

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Hazem Mohamed

Used 1+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the class used to create a main window in Tkinter?

Window()

create_window()

Tk()

MainWindow()

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you set the title of a Tkinter window?

title.set('Your Title Here')

window.title('Set Your Title')

window.title('Your Title Here')

window.set_title('Your Title Here')

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which widget is used to display text in a Tkinter application?

Entry

TextBox

Button

Label

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What method is used to add a button to a Tkinter window?

Add a button using the button widget only.

Use the Label class to create a button.

Invoke the Button method without a geometry manager.

Use the Button class and pack() to add a button to the window.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you start the Tkinter event loop?

window.mainloop()

start.mainloop()

window.run()

mainloop.start()

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the pack() method in Tkinter?

To delete a widget from the interface.

To change the color of a widget.

To create a new window in Tkinter.

To add widgets in the window.