Preguntas sobre Java y Estructuras de Datos

Preguntas sobre Java y Estructuras de Datos

Professional Development

21 Qs

quiz-placeholder

Similar activities

Security+ Cengage Module6: Mobile and Embedded Device Security

Security+ Cengage Module6: Mobile and Embedded Device Security

Professional Development

20 Qs

High Impact Teaching Strategies

High Impact Teaching Strategies

Professional Development

20 Qs

Sesion 02 - Explorador de archivos

Sesion 02 - Explorador de archivos

Professional Development

20 Qs

SESIÓN # 3

SESIÓN # 3

Professional Development

17 Qs

Perkenalan

Perkenalan

Professional Development

20 Qs

A 7th Quizz: Things you should know as an Adult.

A 7th Quizz: Things you should know as an Adult.

Professional Development

20 Qs

Retoque con Tecnología IA - Photoshop - 2025

Retoque con Tecnología IA - Photoshop - 2025

Professional Development

20 Qs

ÔN TẬP TIN HỌC LỚP 5 HKI

ÔN TẬP TIN HỌC LỚP 5 HKI

Professional Development

25 Qs

Preguntas sobre Java y Estructuras de Datos

Preguntas sobre Java y Estructuras de Datos

Assessment

Quiz

Instructional Technology

Professional Development

Practice Problem

Medium

Created by

Avelino Gomez

Used 4+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

21 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Qué método de File se usa para obtener la ruta completa de un archivo en Java?

getPath()

getAbsolutePath()

getCanonicalPath()

getFullPath()

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Qué mostrará el siguiente código si el archivo "datos.txt" no existe? java Copiar Editar File archivo = new File("datos.txt"); if (!archivo.exists()) { System.out.println("El archivo no está disponible"); } else { System.out.println("¿Existe?"); }

Lanza una excepción

"El archivo no está disponible"

"¿Existe?"

No se ejecuta correctamente

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Cuál de estas excepciones no es obligatoria capturar al manipular archivos en Java?

IOException

FileNotFoundException

SecurityException

EOFException

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Cuál de estas afirmaciones sobre ArrayList y LinkedList es incorrecta?

ArrayList permite acceso rápido a elementos por índice

LinkedList es eficiente para inserciones en el medio de la lista

LinkedList siempre es más rápida que ArrayList

ArrayList usa un array redimensionable internamente

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Qué imprimirá el siguiente código? java Copiar Editar List nombres = Arrays.asList("Lucas", "María", "David"); nombres.forEach(n -> System.out.println("Bienvenido " + n));

Bienvenido Lucas, Bienvenido María, Bienvenido David

[Bienvenido Lucas, Bienvenido María, Bienvenido David]

Error en tiempo de compilación

No imprime nada

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Cómo obtener el primer elemento de un LinkedList sin eliminarlo?

first()

getFirst()

head()

retrieveFirst()

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Qué sucede si se inserta un valor con una clave ya existente en un HashMap?

Se lanza una excepción

Se reemplaza el valor anterior

La clave se ignora y el nuevo valor no se guarda

Se agrega una nueva clave con el mismo nombre

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?