Tkinter Course - 1

Tkinter Course - 1

12th Grade - Professional Development

6 Qs

quiz-placeholder

Similar activities

Interfaces en Python

Interfaces en Python

12th Grade

10 Qs

Programación Avanzada II - Parte 7

Programación Avanzada II - Parte 7

University

10 Qs

Python Library-1

Python Library-1

12th Grade

11 Qs

Phyton Review Lesson 11-Flash Card Closing

Phyton Review Lesson 11-Flash Card Closing

12th Grade - Professional Development

5 Qs

TKinter Basics Knowledge Check

TKinter Basics Knowledge Check

12th Grade

9 Qs

python

python

Professional Development

10 Qs

Pong Game Quiz - Part 2

Pong Game Quiz - Part 2

3rd Grade - University

7 Qs

Tkinter

Tkinter

9th - 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")