Principais perguntas e respostas de entrevista e testes online
Plataforma educacional para preparacao de entrevistas, testes online, tutoriais e pratica ao vivo

Desenvolva habilidades com trilhas de aprendizado focadas, simulados e conteudo pronto para entrevistas.

WithoutBook reune perguntas de entrevista por assunto, testes praticos online, tutoriais e guias comparativos em um unico espaco de aprendizado responsivo.

Preparar entrevista

C# perguntas e respostas de entrevista

Pergunta 1. What’s 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 it’s being operated on, a new instance is created.

Isto e util? Adicionar comentario Ver comentarios
 

Pergunta 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[]

Isto e util? Adicionar comentario Ver comentarios
 

Pergunta 3. What’s 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.

Isto e util? Adicionar comentario Ver comentarios
 

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

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

Isto e util? Adicionar comentario Ver comentarios
 

Pergunta 5. What’s the .NET datatype that allows the retrieval of data by a unique key?

HashTable.

Isto e util? Adicionar comentario Ver comentarios
 

Mais uteis segundo os usuarios:

Copyright © 2026, WithoutBook.