Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
Volver a realizar la evaluación
ÚLTIMO
Intento
Tiempo
Puntaje
Intento 1
68 minutos
75 de 75
Calificación para este intento:
75 de 75
Presentado 21 de sep en 12:14 Este intento tuvo una duración de 68 minutos. Pregunta 1
3.75 / 3.75 ptos.
Cual es la sentencia correcta para imprimir texto en pantalla?
¡Correcto!
System.out.println("Hola Mundo");
Pregunta 2
3.75 / 3.75 ptos.
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){ args) { 5. Declare variables ( DE SER NECESARIO) ¿Cuál es la salida del siguiente programa en JAV JAVA? A?
Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
int x=26750,r=0; r+=x/10000; x=x%10000; r+=x/1000; x=x%1000; /*
r+=x/100; x=x%100; */
r+=x/10; r+=x%10; System.out.println(r ));;
¡Correcto!
83 (83..83)
Pregunta 3
3.75 / 3.75 ptos.
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){ args) { 5. Declare variables ( DE SER NECESARIO) ¿Cuál es la salida del siguiente programa en JAV JAVA? A? int a = 1; int b = 2; https://poli.instructure.com/courses/11280/quizzes/41088
3/22
21/9/2019
Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
¡Correcto!
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);
Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
Pregunta 4
3.75 / 3.75 ptos.
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){ args) { 5. Declare variables ( DE SER NECESARIO) ¿Cuál es la salida del siguiente programa en JAV JAVA? A?
int i = 1, j = 2, k = 0;
double x = 2.1, y = 4.5, z = 10.0; x = i / 2; y *= 2; z = y / 3.0; i++; j += k + 5; j += k + 2; k--; System.out.println (x); System.out.println (y ); System.out.println (z); System.out.println (i); System.out.println (j); System.out.println (k);
Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
¡Correcto!
0.0 9.0 3.0 2 9
-1
3.75 / 3.75 ptos.
Pregunta 5
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){ args) { 5. Declare variables ( DE SER NECESARIO) ¿Cuál es la salida del siguiente programa en JAV JAVA? A? int i = 1, j = 2, k = 0; double x = 2.1, y = 4.5, z = 10.0; x = i / 2; y *= 2; z = y / 3.0; i++; j += k + 5; j += k + 2; k--; System.out.println System.out.println System.out.println System.out.println https://poli.instructure.com/courses/11280/quizzes/41088
(x); (y ); (z); (i); 6/22
21/9/2019
Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
¿Cual es la manera correcta para tomar datos del teclado de tipo entero, teniendo en cuenta que la variable que tomo para guardar mis datos es teclado? https://poli.instructure.com/courses/11280/quizzes/41088
7/22
21/9/2019
¡Correcto!
Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
nombre_variable = teclado.nextInt();
Pregunta 7
3.75 / 3.75 ptos.
¿Que tipo de operación realiza el % en Java ?
¡Correcto!
Módulo
Pregunta 8
3.75 / 3.75 ptos.
Llamamos expresión booleana a una expresión que solo tiene dos valores posibles: verdadero (true) o falso (false). ¡Correcto!
Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
El nombre de una variable es una secuencia de caracteres que puede comenzar con letras, con el signo' $' o con el signo '_'
¡Correcto!
True
3.75 / 3.75 ptos.
Pregunta 10
Unir el tipo de variable con el tipo de datos que soporta. ¡Correcto!
bool
True/False
¡Correcto!
Char
Caracteres
¡Correcto!
Double
Decimales
Pregunta 11
3.75 / 3.75 ptos.
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){ args) { 5. Declare variables ( DE SER NECESARIO) ¿Cuál es la salida del siguiente programa en JAV JAVA? A? https://poli.instructure.com/courses/11280/quizzes/41088
9/22
21/9/2019
Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
for (int i=10;i>=0;i--){ System.out.println (i); } ¡Correcto!
Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
3.75 / 3.75 ptos.
Pregunta 12
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){ args) { 5. Declare variables ( DE SER NECESARIO) ¿Cuál es la salida del siguiente programa en JAV JAVA? A? 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 System.out. println (a); System.out.println System.out. println (b); System.out.println System.out. println (c); System.out.println System.out. println (d); System.out.println System.out. println (e); System.out.println System.out. println (f);
Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
Pregunta 13
3.75 / 3.75 ptos.
Cuál es la salida del siguiente programa en JAV JAVA? A? String a = "hola"; String b = 'h' + "o" + 'l' + "a" + ""; boolean c = a.equals (b); boolean e = !c; char f = 'f'; char g = 'f'; boolean h = g != f; System.out.println (a); System.out.println (b); System.out.println (c); System.out.println (e); System.out.println (f); System.out.println (g); System.out.println (h );
Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
¡Correcto!
hola hola true false f f
false
Pregunta 14
3.75 / 3.75 ptos.
Ejercicio de Compilación: 1. Ingrese a eclipse. https://poli.instructure.com/courses/11280/quizzes/41088
13/22
21/9/2019
Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
2. Cree un proyecto. 3. Cree una clase. 4. Realize el encabezado public static void main (String[] args){ args) { 5. Declare variables ( DE SER NECESARIO) ¿Cuál es la salida del siguiente programa en JAV JAVA? A?
int x=26750,r=0;
r+=x/10000;
x=x%10000;
r+=x/1000;
x=x%1000;
r+=x/100;
x=x%100;
r+=x/10;
r+=x%10;
System.out .println(x); .println(x);
¡Correcto!
50
Pregunta 15
3.75 / 3.75 ptos.
Ejercicio de Compilación: 1. Ingrese a eclipse. 2. Cree un proyecto. https://poli.instructure.com/courses/11280/quizzes/41088
14/22
21/9/2019
Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
3. Cree una clase. 4. Realize el encabezado public static void main (String[] args){ args) { 5. Declare variables ( DE SER NECESARIO) ¿Cuál es la salida del siguiente programa en JAV JAVA? A? String a = "hola"; String b = 'h' + "o" + 'l' + "a" + ""; boolean c = a.equals (b); boolean e = !c; char f = 'f'; char g = 'f'; boolean h = g != f; System.out.println (a); System.out.println (b); System.out.println (c); System.out.println (e); System.out.println (f); System.out.println (g); System.out.println (h );
Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
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);
Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
Pregunta 18
3.75 / 3.75 ptos.
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){ args) { 5. Declare variables ( DE SER NECESARIO) ¿Cuál es la salida del siguiente programa en JAV JAVA? A?
Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
¡Correcto!
El programa genera una cadena compuesta de X y O. Donde X representa los dígitos impares de un número de 3 cifras y O representa los dígitos pares.
Pregunta 19
3.75 / 3.75 ptos.
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){ args) { 5. Declare variables ( DE SER NECESARIO) ¿Cuál es la salida del siguiente programa en JA JAVA? VA?
char i = 'd'; char j = 'e'; int n = 2; String s = "d+e"; String t = "de"; String u = i + "" + n + j + "!";
Examen pa parcial - Semana 4: 4: R RA A/PRIMER B BL LOQUE-PROGRAMACION DE DE CO COMPUTADORES-[GRUPO2]
3. Cree una clase. 4. Realize el encabezado public static void main (String[] args){ args) { 5. Declare variables ( DE SER NECESARIO) ¿Cuál es la salida del siguiente programa en JAV JAVA? A?
Thank you for interesting in our services. We are a non-profit group that run this website to share documents. We need your help to maintenance this website.