Preguntas sobre tkinter

Preguntas sobre tkinter

12th Grade

10 Qs

quiz-placeholder

Similar activities

MIT App Inventor Basics

MIT App Inventor Basics

9th - 12th Grade

10 Qs

Модуль tkinter

Модуль tkinter

12th Grade

15 Qs

Python EVALUCACION ENTORNO GRÁFICO

Python EVALUCACION ENTORNO GRÁFICO

9th - 12th Grade

10 Qs

Python-Tkinter

Python-Tkinter

12th Grade

12 Qs

Ch 5 Pop up l Learn Mode

Ch 5 Pop up l Learn Mode

9th Grade - University

13 Qs

Функції та методи списків. Інтерфейс користувача. Модуль tkinter

Функції та методи списків. Інтерфейс користувача. Модуль tkinter

12th Grade

12 Qs

Python with DataScience

Python with DataScience

7th Grade - University

10 Qs

Python Basics Quiz

Python Basics Quiz

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?