Loading [MathJax]/jax/output/HTML-CSS/fonts/TeX/fontdata.js
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.

18
0
0
grupo_T9 programacion
Created by grupo_T9 programacion about 5 years ago
Rate this resource by clicking on the stars below:
1 2 3 4 5 (0)
Ratings (0)
0
0
0
0
0

0 comments

There are no comments, be the first and leave one below:

Close

Condicionales

Question 1 of 3 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 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:

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

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

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

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

Explanation

Question 3 of 3 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