Programacion 1 if while

Programacion 1 if while

3rd Grade

7 Qs

quiz-placeholder

Similar activities

SEMANA 4 MCI TECNOLOGÍA

SEMANA 4 MCI TECNOLOGÍA

3rd Grade

10 Qs

Python

Python

3rd - 10th Grade

10 Qs

Clase 1 de 6 Avanzado

Clase 1 de 6 Avanzado

1st - 10th Grade

10 Qs

C Strings Quiz

C Strings Quiz

3rd Grade

10 Qs

K3MT 201920 SC 025 (Array 1)

K3MT 201920 SC 025 (Array 1)

KG - University

11 Qs

Programación en Bloque MakeCode Micro:Bit

Programación en Bloque MakeCode Micro:Bit

1st - 12th Grade

10 Qs

Comprobación Excel Avanzado I

Comprobación Excel Avanzado I

3rd Grade

11 Qs

Conectividad WiFi: Repaso Día 3

Conectividad WiFi: Repaso Día 3

1st Grade - Professional Development

10 Qs

Programacion 1 if while

Programacion 1 if while

Assessment

Quiz

Computers

3rd Grade

Hard

Created by

AGUSTIN LÓPEZ

Used 13+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Para comparar el contenido de 2 Strings uso:

string1.equals(string2)

string1 == string2

string1 = string2

string1 != string2

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Una condición que detecte temperaturas extremas

temp >= -10 && temp <= 50

temp < -10 && temp > 50

temp >= -10 || temp <= 50

temp < -10 || temp > 50

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Una condición que detecte edades de entre 11 a 17 años

edad >=11 || edad <=17

edad >=11 && edad <=17

edad <11 && edad >17

edad <11 || edad >17

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int number=0;

if(number){

//instrucciones

}

¿Cuál es el error en la condición del if?

Produce un valor true

Produce un valor false

No produce un valor boolean

Todas las anteriores son correctas

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

while(true){

System.out.println("Hola");

}

Muestra Hola 1 vez

Muestra Hola infinitas veces

No muestra Hola

Muestra Hola 2 veces

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

boolean esMayor=true;

if(esMayor){

System.out.println("Si es mayor");

}

¿Qué muestra?

Si es mayor

Nada

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

boolean esMayor=true;

if(!esMayor){

System.out.println("No es mayor");

}

¿Qué muestra?

No es mayor

Nada