Programacion de Coputadores Examen Semana 4
Programacion de Coputadores Examen Semana 4
Programacion de Coputadores Examen Semana 4
Pregunta 1
3.75 / 3.75 ptos.
¿Que tipo de operación realiza el % en Java ?
Resta
División
Módulo
Multiplicación
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){
5. Declare variables ( DE SER NECESARIO)
a = a + b;
b = a - b;
a = a - b;
a = 17 , b = 32
a = 32 , b = 17
a = 15 , b = 15
a = 49 , b = 32
a = 32 , b = 15
Pregunta 3
3.75 / 3.75 ptos.
Cuál es la salida del siguiente programa en JAVA?
int i = 1, j = 2, k = 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);
1.0
9.0
1.0
-1
2.0
9.0
1.0
-2
0.0
9.0
3.0
-1
3.0
11.0
1.0
-2
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){
5. Declare variables ( DE SER NECESARIO)
tp = 1, tc = 3;
tp = 2, tc = 2;
tp = 3, tc = 3;
tp = 2, tc = 1.
double de = 0.0;
if (tp == 1) {
de = 0.01;
}
else if (tp == 2) {
if (tc == 1)
de = 0.02;
else if (tc == 2)
de = 0.03;
else if (tc == 3)
de = 0.04;
} else {
de = 0.0;
}
System.out.println(de);
de = 0.03 para tp = 1, tc = 3
de = 0.01 para tp = 2, tc = 2
de = 0.00 para tp = 3, tc = 3
de = 0.02 para tp = 2, tc = 1
de = 0.01 para tp = 1, tc = 3
de = 0.03 para tp = 2, tc = 2
de = 0.02 para tp = 3, tc = 3
de = 0.01 para tp = 2, tc = 1
de = 0.02 para tp = 1, tc = 3
de = 0.01 para tp = 2, tc = 2
de = 0.03 para tp = 3, tc = 3
de = 0.02 para tp = 2, tc = 1
de = 0.01 para tp = 1, tc = 3
de = 0.02 para tp = 2, tc = 2
de = 0.02 para tp = 3, tc = 3
de = 0.02 para tp = 2, tc = 1
de = 0.01 para tp = 1, tc = 3
de = 0.03 para tp = 2, tc = 2
de = 0.00 para tp = 3, tc = 3
de = 0.02 para tp = 2, tc = 1
de = 0.01 para tp = 1, tc = 3
de = 0.03 para tp = 2, tc = 2
de = 0.02 para tp = 3, tc = 3
de = 0.02 para tp = 2, tc = 1
Pregunta 5
3.75 / 3.75 ptos.
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);
15
12
17
15
11
17
15
10
17
2
3
15
11
17
Pregunta 6
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){
5. Declare variables ( DE SER NECESARIO)
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);
3
6
15
11
17
15
12
17
15
11
17
15
10
17
Pregunta 7
3.75 / 3.75 ptos.
Unir el tipo de variable con el tipo de datos que soporta.
bool
True/False
Char
Caracteres
Double
Decimales
Pregunta 8
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){
5. Declare variables ( DE SER NECESARIO)
int i = 1, j = 2, k = 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);
3.0
11.0
1.0
-2
2.0
9.0
1.0
-2
1.0
9.0
1.0
-1
0.0
9.0
3.0
2
9
-1
Pregunta 9
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){
5. Declare variables ( DE SER NECESARIO)
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);
83 (83..83)
23
33
Pregunta 10
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){
5. Declare variables ( DE SER NECESARIO)
String a = "hola";
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 );
hola
hola_
false
true
g
f
false
hola
hola
true
false
false
hola
hola
false
false
false
hola_
hola
false
false
false
Pregunta 11
3.75 / 3.75 ptos.
La palabra reservada else se utiliza principalmente para:
Garantizar que las condiciones coincidan con los bloques de instrucciones asignados para
cada caso
Pregunta 12
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){
5. Declare variables ( DE SER NECESARIO)
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);
50
90
180
130
Pregunta 13
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){
5. Declare variables ( DE SER NECESARIO)
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);
true
true
true
true
true
true
true
true
true
true
true
false
false
true
true
true
true
false
false
true
true
true
true
true
Pregunta 14
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){
5. Declare variables ( DE SER NECESARIO)
30
500
308
200
109
Pregunta 15
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){
5. Declare variables ( DE SER NECESARIO)
char i = 'd';
char j = 'e';
int n = 2;
String s = "d+e";
String t = "de";
System.out.println (i);
System.out.println (j);
System.out.println (s);
System.out.println (t);
System.out.println (u);
de
de
de!
d
e
d+e
de
d2e!
de
de
d2!
d+e
de!
de
Pregunta 16
3.75 / 3.75 ptos.
Cuál es la salida del siguiente programa en JAVA?
char i = 'd';
char j = 'e';
int n = 2;
String s = "d+e";
String t = "de";
System.out.println (i);
System.out.println (j);
System.out.println (s);
System.out.println (t);
System.out.println (u);
de
de
de!
d+e
de
d2e!
d+e
de!
de
de
de
d2!
Pregunta 17
3.75 / 3.75 ptos.
¿Que librería debo llamar de primeras para tomar un dato por teclado?
import java.util.Screen;
import java.util.Scanner;
import java.Scanner;
import java.util.Math;
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){
5. Declare variables ( DE SER NECESARIO)
System.out.println (i);
Error de compilación
20
19
18
17
16
15
14
13
12
11
10
10
9
8
7
6
5
4
3
2
1
0
1.0
9.0
1.0
-1
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){
5. Declare variables ( DE SER NECESARIO)
int n=2;
for (int i=1; i<=n; i++){
for (int j=n; j>=1; j--){
if (i>j){
System.out.print (j+2);
}else{
System.out.print (" ");
}
if (i>=j){
System.out.print (i);
}else{
System.out.print ("");
}
}
System.out.println();
}
4
444
1
232
4
232
1
222
Pregunta 20
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){
5. Declare variables ( DE SER NECESARIO)
int n=5;
int m = n * 2;
int i = 1;
while (i <= n) {
int j = 1;
while (j < m) {
if (j >= i && j <= m - i) {
if (j <= n)
System.out.print (" " + (j - i + 1) + " ");
else
System.out.print (" " + (m - j - i + 1) + " ");
} else {
System.out.print (" ");
}
j = j + 1;
}
System.out.println ();
i = i + 1;
}
123451
1234
12
123454321
1234321
12321
121
1
1
01
-1 0 1
-2 -1 0 1
-3 -2 -1 0 1
1
10
1 0 -1
1 0 -1 -2
1 0 -1 -2 -3
Calificación de la evaluación: 75 de 75
AnteriorSiguiente