Preguntas sobre tkinter

Preguntas sobre tkinter

12th Grade

10 Qs

quiz-placeholder

Similar activities

Kuiz Pemantapan Latihan Amali Pangkalan Data

Kuiz Pemantapan Latihan Amali Pangkalan Data

12th Grade

10 Qs

App lab final day quiz

App lab final day quiz

4th - 12th Grade

10 Qs

Visual Basic Basics!

Visual Basic Basics!

9th - 12th Grade

8 Qs

Exploring Python Tkinter

Exploring Python Tkinter

12th Grade

8 Qs

Создание программ на ЯП Python

Создание программ на ЯП Python

9th - 12th Grade

13 Qs

Bibliothèque Tkinter avec Python

Bibliothèque Tkinter avec Python

12th Grade

10 Qs

Creating Widgets in Tkinter with Python

Creating Widgets in Tkinter with Python

12th Grade

10 Qs

xi.5

xi.5

12th Grade

10 Qs

Preguntas sobre tkinter

Preguntas sobre tkinter

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Manuel Montano

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

¿Cuál es el método tkinter que se utiliza para crear una ventana principal?

Tkinter.createWindow()

Tkinter.mainWindow()

Tk()

window.create()

main.window()

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

¿Qué método se utiliza para agregar un widget a una ventana en tkinter?

addWidget()

add()

insert()

pack()

place()

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

¿Cuál de las siguientes opciones representa la forma correcta de crear un botón en tkinter?

button = Button(text='Click')

button = Button('Click')

button = tk.Button(text='Click')

button = tk.Button()

button = Button(master=root, text='Click')

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

¿Para qué sirve el método `.grid()` en tkinter?

Organizar widgets en una cuadrícula.

Centrar un widget en la ventana.

Ocultar un widget.

Cambiar el tamaño de un widget.

Agregar un borde a un widget.

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

¿Qué comando tkinter permite configurar el título de una ventana?

window.setTitle()

root.title()

setWindowTitle()

root.set('Título')

window.set_title()

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

¿Cómo se crea una etiqueta (label) con el texto 'Hola Mundo' en tkinter?

label = Label(text='Hola Mundo')

label = Label('Hola Mundo')

label = tk.Label(text='Hola Mundo')

label = Label(master=root, text='Hola Mundo')

label = tk.Label(root, text='Hola Mundo')

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

¿Cuál es la función de la librería `tkinter` en Python?

Manejo de bases de datos.

Creación de interfaces gráficas de usuario.

Procesamiento de imágenes.

Comunicación en red.

Análisis de datos.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?