Prueba
Prueba
Prueba
NOMBRE:________________________________________________ FECHA_____________
int j=2;
int k=3;
int m=2;
a- true
b- false
c- undefined
d- Da error de compilación
int value = 4;
switch (value%2) {
case 0:
System.out.println("Par");
break;
case 1:
System.out.println("Impar");
a- Sí, es correcto.
b- Es incorrecto, no se puede utilizar una operación en el switch
c- Es incorrecto, falta la opción default
d- Es incorrecto, falta un break en el case 1.
int x = 0;
int y = 0;
while (x<10) {
y += x;
x++;
System.out.println(y);
System.out.println("Hola\nMundo");
a- "Hola Mundo"
b- "Hola\nMundo"
c- "Hola" y en otra línea "Mundo"
d- "Hola" un tabulador y "Mundo"
System.out.println(12&13);
a- true
b- false
c- 12
d- 13
9- ¿Cuál es el valor de x?
double x = Math.pow(2, 2);
a- 4
b- "4"
c- 4.0
d- Cualquiera de los tres es válido
a- Estructura Secuencial
b- Estructura Repetitiva
c- Estructura Selectiva
d- Ninguna de las tres anteriores.
1
2 public class Padre{
3 Padre(byte b) {
4 System.out.println("El padre fue invocado");
5 }
6 Padre(){ } }
////////////////////////////////
7 class Hijo extends Padre{
8 public static void main(String[] args){
9 Hijo h = new Hijo();
10 // primero
11 }
12 public Hijo(){
// segundo
13 }
14 public void derivado(){
15 // tercero;
16 }
}
17
18
?
1
public class OperandOrder{
2 public static void main(String[] args){
3 int i = 0;
4 int[] a = {3,6};
5 a[i] = i = 9;
6 System.out.println(i + " " + a[0] + " " + a[1]);
}
7 }
8
¿Qué ocurre durante la ejecución del código anterior?
a- Lanza una excepción de tipo ArrayIndexOutOfBoundsException
b- Imprime 9 9 6
c- Imprime 9 3 9
d- Imprime 9 0 6
e- Imprime 9 3 6
20.- Se tiene la siguiente clase Java:
?
1
2 public class TestSobreCarga{
public static void main(String[] args) {
3
4
new TestSobreCarga().metodo(10);
5 }
6
7 public void metodo(long i) {
8 System.out.println("He recibido un long");
9 }
10
11 public void metodo(short i) {
System.out.println("He recibido un short");
12 }
13}
14
¿Qué sucede cuando se ejecuta la clase?
a- Se imprime se recibió un int.
b- Se imprime He recibido un short.
c- Se imprime: He recibido un long.
@WebServlet(name="HolaMundoServlet", urlPatterns={"/HolaMundo/*"})
a- http:// máquina:puerto/contexto/HolaMundo/synopsis
b- http:// máquina:puerto/contexto/HolaMundo/complete?date=today
c- http:// máquina:puerto/contexto/HolaMundo
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=UTF-8">
<title>Hola mundo JSP</title>
</head>
<body>
<h1>Hola mundo JSP</h1>
<p>La fecha actual en el servidor es <%= 2+2 %> </p>
</body>
</html>
¿Corresponde a:
a- Un Servlet
b- Una página JSP
c- Todas las anteriores
d- Ninguna de las anteriores