Preguntas y respuestas de entrevista mas solicitadas y pruebas en linea
Plataforma educativa para preparacion de entrevistas, pruebas en linea, tutoriales y practica en vivo

Desarrolla tus habilidades con rutas de aprendizaje enfocadas, examenes de practica y contenido listo para entrevistas.

WithoutBook reune preguntas de entrevista por tema, pruebas practicas en linea, tutoriales y guias comparativas en un espacio de aprendizaje responsivo.

Preparar entrevista

Examenes simulados

Poner como pagina de inicio

Guardar esta pagina en marcadores

Suscribirse con correo electronico

C# preguntas y respuestas de entrevista

Pregunta 1. Whats the advantage of using System.Text.StringBuilder over System.String?

StringBuilder is more efficient in the cases, where a lot of manipulation is done to the text. Strings are immutable, so each time its being operated on, a new instance is created.

Es util? Agregar comentario Ver comentarios
 

Pregunta 2. Can you store multiple data types in System.Array?

You never use System. Array directly. You can store items whose data type is equivalent to, or derived from, the data type of the array. This means that you can store multiple data types, provided that they derive from a common base type, or implement a common interface.

Example:
If you want to store different types, use System.Collections.ArrayList or object[]

Es util? Agregar comentario Ver comentarios
 

Pregunta 3. Whats the difference between the System.Array.CopyTo() and System.Array.Clone()?

The first one performs a deep copy of the array, the second one is shallow.

Es util? Agregar comentario Ver comentarios
 

Pregunta 4. How can you sort the elements of the array in descending order?

By calling Sort() and then Reverse() methods.

Es util? Agregar comentario Ver comentarios
 

Pregunta 5. Whats the .NET datatype that allows the retrieval of data by a unique key?

HashTable.

Es util? Agregar comentario Ver comentarios
 

Lo mas util segun los usuarios:

Copyright © 2026, WithoutBook.