grupo_T9 programacion
Quiz by , created more than 1 year ago

Ordenadores/Informática Quiz on Condicionales, created by grupo_T9 programacion on 12/15/2019.

17
0
0
grupo_T9 programacion
Created by grupo_T9 programacion over 4 years ago
Close

Condicionales

Question 1 of 3

1

Para enlazar varios condicionales se utiliza la estructura:
if (...){
...
}if not (...){
...
}

Select one of the following:

  • True
  • False

Explanation

Question 2 of 3

1

Realizar estructura para: "mientras que i sea mayor o igual que j realizar suma=suma + v1". (No es necesario introducir los datos de v1, suma o los bucles de i y j).

Select one of the following:

  • while (i>=j){
    suma=suma+v1
    }

  • while i> & =j {
    suma=suma+v1
    }

  • if (i>=j){
    suma=suma+v1
    }

  • if i>=j {
    suma=suma+v1
    }

Explanation

Question 3 of 3

1

Se puede cambiar el color de una representación gráfica dependiendo del valor que tome una varible.

Select one of the following:

  • True
  • False

Explanation