Search Header Logo

Lesson 4 Quiz

Authored by Whizara Teacher

Computers

6th - 12th Grade

Lesson 4 Quiz
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Which of these options show incorrect syntax?

Import Tkinter

import tk

import tkinter

import tk as tkinter

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What is the use of the <widget>.config() method?

To modify the properties of the widget during program run

To create the widget

To delete the widget

To alter the text shown on the widget

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Predict the output for these lines of code.

>>> var = 5

>>> def Fun1():

>>> global var

>>> var += 21

>>> print('Variable inside the function:',var)

 

>>> Fun1()

>>> var += 4

>>> print('Variable outside the function:',var)

Error

Variable outside the function: 30

Variable inside the function: 30

Variable outside the function: 30

Variable inside the function: 26

Variable outside the function: 30

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Find the line number on which an error is present.

>>> import tkinter as tk # 1

>>> top = tk.Tk() # 2

>>> L1 = tk.Label(top,text = ('Arial',12)) # 3

>>> L1.pack() # 4

1

2

3

4

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What argument does playsound.playsound() accept?

A string argument that holds the path to the sound file

 A file handle that contains the sound file inside an open() function

No argument is required

An import statement

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

The methods, grid() and pack() can be used simultaneously to fit a widget to a GUI window.

True

False

7.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Which of these properties can be used with a Button widget’?

padx

pady

bd

All the other options are correct

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?