Daniel Gil
Quiz by , created more than 1 year ago

Answer me

5
0
0
Daniel Gil
Created by Daniel Gil over 8 years ago
Close

DanielGil__

Question 1 of 20

1

¿Cómo se imprime un mensaje en la pantalla?

Select one of the following:

  • Print(" ")

  • print(" "):

  • print(" ")

Explanation

Question 2 of 20

1

¿Puedo operar variables numéricas declarándolas de la siguiente manera: a = input ("Introduce un valor")

Select one of the following:

  • True
  • False

Explanation

Question 3 of 20

1

¿Cuál es la forma correcta para elevar un valor al cuadrado en Python?

Select one of the following:

  • a = a * a

  • b = a * a

  • c = a * b

Explanation

Question 4 of 20

1

¿De qué manera pido un valor numérico en Python?

Select one of the following:

  • a = int(input("Ingresa un valor"):

  • a = int(input("Ingresa un valor"))

  • a = input("Ingresa un valor")

Explanation

Question 5 of 20

1

¿Qué tipo de variables puedo usar en Python?

Select one of the following:

  • integer - string - double - char

  • int - string - float

  • num - tex - letra

Explanation

Question 6 of 20

1

¿Qué operadores se manejan en Python?

Select one or more of the following:

  • Aritméticos

  • Lógicos

  • Relacionados

Explanation

Question 7 of 20

1

¿Cual es la función de salida en Python?

Select one of the following:

  • leer

  • print

  • imprimir

Explanation

Question 8 of 20

1

¿Cuales son las funciones de entrada de datos en Python?.

Select one or more of the following:

  • raw_input

  • input

  • escribir

Explanation

Question 9 of 20

1

¿Cuál es la estructura correcta para el ciclo para?

Select one of the following:

  • for i in [range]:
    _____Acción

  • for i in [range]
    _____Acción

Explanation

Question 10 of 20

1

¿Cuál de estos tipos de rango es incorrecto?

Select one of the following:

  • range(5):

  • Rango(1-2-3-4-5)

  • range(0,4):

Explanation

Question 11 of 20

1

¿Cuál de estos NO es un ordenamiento en Python?

Select one of the following:

  • Ordenamiento Binario

  • Ordenamiento Rápido

  • Ordenamiento Por Selección

Explanation

Question 12 of 20

1

¿Qué necesita el ciclo While para que funcione correctamente en Python?

Select one of the following:

  • El Inicio de Variable
    El Aumento de Variable

  • Nada

Explanation

Question 13 of 20

1

¿Cómo empiezan las líneas que usamos en Python?

Select one of the following:

  • Con letra Minúscula

  • Con un Signo

  • Con letra Mayúscula

Explanation

Question 14 of 20

1

¿Cuál es la estructura incorrecta para el ciclo Sí?

Select one of the following:

  • if <condición>:
    Acción Verdadera
    else
    Acción Falsa

  • if <condición>:
    _____Acción Verdadera
    else:
    _____Acción Falsa

Explanation

Question 15 of 20

1

¿Cómo se piden valores para llenar un vector en Python?

Select one of the following:

  • v[0]=int(input("Ingresa un Valor"))

  • v[0]=input("Ingresa un Valor")

  • v[0]=("Ingresa un Valor")

Explanation

Question 16 of 20

1

¿Cuál es la forma correcta para declarar un vector en blanco en Python?

Select one of the following:

  • vb = [0,0,0,0,0]

  • vb = [En Blanco]

  • vb = [ ]

Explanation

Question 17 of 20

1

¿Qué sucede si multiplicamos una palabra en Python por dos?

Select one of the following:

  • Pasa lo siguiente:
    a = 'hola'
    print (2*a)
    holahola

  • No pasa nada

  • Marca error

Explanation

Question 18 of 20

1

¿Qué símbolo o función utilizo en Python para realizar una potencia?

Select one of the following:

  • La función pow

  • Dos Asteriscos (**)

  • La función <cmath>

Explanation

Question 19 of 20

1

¿Es correcto el siguiente programa?

for i in range(1,11):
_____print(i)

Select one of the following:

  • True
  • False

Explanation

Question 20 of 20

1

¿Cuál es la forma correcta para guardar un programa?

Select one of the following:

  • name.guardar

  • name.py

  • name.save

Explanation