Está en la página 1de 6

18/3/24, 5:50 Actividad de puntos evaluables - Escenario 2: PRIMER BLOQUE-TEORICO-PRACTICO - VIRTUAL/PROGRAMACIÓN DE COMPUT…

Actividad de puntos evaluables - Escenario 2

Fecha de entrega 19 de mar en 23:55


Puntos 50
Preguntas 5
Disponible 16 de mar en 0:00 - 19 de mar en 23:55
Límite de tiempo 90 minutos
Intentos permitidos 2

Instrucciones

Volver a realizar el examen

Historial de intentos

https://poli.instructure.com/courses/64451/quizzes/141980 1/6
18/3/24, 5:50 Actividad de puntos evaluables - Escenario 2: PRIMER BLOQUE-TEORICO-PRACTICO - VIRTUAL/PROGRAMACIÓN DE COMPUT…

Intento Hora Puntaje


MÁS RECIENTE Intento 1 41 minutos 50 de 50

 Las respuestas correctas estarán disponibles del 19 de mar en 23:55 al 20 de mar en 23:55.

Puntaje para este intento: 50 de 50


Entregado el 17 de mar en 23:46
Este intento tuvo una duración de 41 minutos.

Pregunta 1
10 / 10 pts
Cual es la sentencia correcta para imprimir texto en pantalla?
System.out.println ( Hola Mundo )

System.out.println("Hola Mundo");

System out println " Hola Mundo"

Ninguna de las anteriores


Pregunta 2
10 / 10 pts
Una expresión que permite calcular el promedio de tres variables enteras a, b y c. Es:

a*3 + b*3 + c*3

a MOD b MOD c

(a+b+c)/3

Recordemos que el promedio, es la suma total y la división entre ellos.


Pregunta 3
10 / 10 pts

Ejercicio de Compilación:

1. Ingrese a eclipse.
2. Cree un proyecto.
3. Cree una clase.
4. Realize el encabezado public static void main (String[] args){
5. Declare variables ( DE SER NECESARIO)

¿Cuál es la salida del siguiente programa en JAVA?

boolean a = false;

boolean b = true;
https://poli.instructure.com/courses/64451/quizzes/141980 2/6
18/3/24, 5:50 Actividad de puntos evaluables - Escenario 2: PRIMER BLOQUE-TEORICO-PRACTICO - VIRTUAL/PROGRAMACIÓN DE COMPUT…

boolean c = !a;

boolean d = a || b;

boolean e = d || c && !a;

boolean f = true && !e;

System.out.println (a);

System.out.println (b);

System.out.println (c);

System.out.println (d);

System.out.println (e);

System.out.println (f);

false

true

true

true

true

true

false

true

true

true

true

false

true

true

true

true

true

true

https://poli.instructure.com/courses/64451/quizzes/141980 3/6
18/3/24, 5:50 Actividad de puntos evaluables - Escenario 2: PRIMER BLOQUE-TEORICO-PRACTICO - VIRTUAL/PROGRAMACIÓN DE COMPUT…

true

true

true

true

true

false


Pregunta 4
10 / 10 pts

Ejercicio de Compilación:

1. Ingrese a eclipse.
2. Cree un proyecto.
3. Cree una clase.
4. Realize el encabezado public static void main (String[] args){
5. Declare variables ( DE SER NECESARIO)

¿Cuál es la salida del siguiente programa en JAVA?

boolean a = false;
boolean b = true;
boolean c = !a;
boolean d = a || b;
boolean e = d || c && !a;
boolean f = true && !e;
System.out.println (a);
System.out.println (b);
System.out.println (c);
System.out.println (d);
System.out.println (e);
System.out.println (f);

false
true
true
true
false
false

false
true
false
true
true
false

https://poli.instructure.com/courses/64451/quizzes/141980 4/6
18/3/24, 5:50 Actividad de puntos evaluables - Escenario 2: PRIMER BLOQUE-TEORICO-PRACTICO - VIRTUAL/PROGRAMACIÓN DE COMPUT…

false
true
true
true
true
true

false
true
true
true
true
false


Pregunta 5
10 / 10 pts

Ejercicio de Compilación:

1. Ingrese a eclipse.
2. Cree un proyecto.
3. Cree una clase.
4. Realize el encabezado public static void main (String[] args){
5. Declare variables ( DE SER NECESARIO)

¿Cuál es la salida del siguiente programa en JAVA?

int a = 1;
int b = 2;
int c = 5;
int d = (a + b) * c;
int e = a + b * c;
int f = 2 * a * a * + b * 3 + c;
System.out.println (a);
System.out.println (b);
System.out.println (c);
System.out.println (d);
System.out.println (e);
System.out.println (f);

1
2
5
15
11
17

1
2
5
15
12
17

https://poli.instructure.com/courses/64451/quizzes/141980 5/6
18/3/24, 5:50 Actividad de puntos evaluables - Escenario 2: PRIMER BLOQUE-TEORICO-PRACTICO - VIRTUAL/PROGRAMACIÓN DE COMPUT…

2
3
6
15
11
17

1
3
5
15
10
17

Puntaje del examen: 50 de 50


X

https://poli.instructure.com/courses/64451/quizzes/141980 6/6

También podría gustarte