Tkinter Course - 1

Tkinter Course - 1

12th Grade - Professional Development

6 Qs

quiz-placeholder

Similar activities

Python Level 2 - Lesson 8

Python Level 2 - Lesson 8

Professional Development

10 Qs

Introduction to Tkinter

Introduction to Tkinter

5th Grade - University

6 Qs

Python_middle

Python_middle

Professional Development

10 Qs

Python 145

Python 145

4th Grade - Professional Development

11 Qs

Python Basics

Python Basics

1st Grade - University

10 Qs

Tkinter

Tkinter

University - Professional Development

7 Qs

Python Coding Specialist

Python Coding Specialist

12th Grade

11 Qs

Python Basics Quiz

Python Basics Quiz

12th Grade

10 Qs

Tkinter Course - 1

Tkinter Course - 1

Assessment

Quiz

Computers

12th Grade - Professional Development

Easy

Created by

Quizzz Ata

Used 10+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is tkinter?

A Python GUI module

A Python Scripting module

2.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

Tkinter is a ___ module

3.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

Tkinter is a ___ module

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Importing Tkinter

from tkinter import *

from python import tk

if Tk() in __main__ :

importaguimodule

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

TK New Window

win = Tk()

from tkinter import windows

from Desktop make Window_In_Tk()

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A new label

x = label(win, text="hi").pack()

in win return Label(text="hi")