Wike Arias
Quiz by , created more than 1 year ago

Quiz on Prueba Corta , created by Wike Arias on 19/09/2014.

84
0
0
No tags specified
Wike Arias
Created by Wike Arias over 9 years ago
Close

Prueba Corta

Question 1 of 5

1

En el Radio button la propiedad más importante es Text

Select one of the following:

  • True
  • False

Explanation

Question 2 of 5

1

ComboBox1.SelectedItem permite hacer referencia al dato que se encuentra en la lista. Pero toma como indicador el orden de los elementos Ejemplo Juan 0, Miguel 1, Maria 2

Select one of the following:

  • True
  • False

Explanation

Question 3 of 5

1

Cual es la propiedad con la que un checkbox permite comparar y modificar algun objeto

Select one or more of the following:

  • Text

  • Font

  • checked

Explanation

Question 4 of 5

1

If (n4 > 100) Then
TextBox7.Text = " "
Else
If (n4 > 60) Then
Label9.Text = ("promovido")
Else
Label9.Text = ("no promovido")
End If
El codigo anterior permite hacer?

Select one or more of the following:

  • Compara la nota para q no sea mayor a 100 Pts. yColocar en un Radio "Promovido" o "No Promovido"

  • Compara la nota para q no sea mayor a 100 Pts. y limpia el Text

  • Valida la nota para q no sea mayor a 100 Pts. y muestra el mensaje de "Promovido" o "No Promovido" en una etiqueta

  • Da error en la Comparación ya que es de esta forma (n4 < 100)

Explanation

Question 5 of 5

1

Dim n1, n2, n3, n4, pd, m As integer
n1 = CDbl(TextBox4)
n2 = CDbl(TextBox5)
n3 = CDbl(TextBox6)
n4 = CDbl(n1 + n2 + n3) / 3

Este codigo Funciona?

Select one of the following:

  • True
  • False

Explanation