Exploring Basic Tkinter Concepts

Exploring Basic Tkinter Concepts

12th Grade

6 Qs

quiz-placeholder

Similar activities

Tkinter

Tkinter

9th - 12th Grade

10 Qs

Word 2016 Lesson 1

Word 2016 Lesson 1

9th - 12th Grade

10 Qs

tkinter1

tkinter1

9th - 12th Grade

7 Qs

Tkinter2

Tkinter2

9th - 12th Grade

7 Qs

Kuis Pengenal TIK

Kuis Pengenal TIK

9th - 12th Grade

10 Qs

Interfaces en Python

Interfaces en Python

12th Grade

10 Qs

Preguntas sobre tkinter

Preguntas sobre tkinter

12th Grade

10 Qs

ข้อสอบกลางภาค ว23104 วิทยาการคำนวณ ม.3/1 - 3/3

ข้อสอบกลางภาค ว23104 วิทยาการคำนวณ ม.3/1 - 3/3

12th Grade

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.