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

Simulados

Definir como pagina inicial

Adicionar esta pagina aos favoritos

Assinar endereco de e-mail

C++ perguntas e respostas de entrevista

Test your skills through the online practice test: C++ Quiz Online Practice Test

Diferencas relacionadas

C vs C++Java vs C++

Pergunta 136. What is the difference between a Java application and a Java applet?


The difference between a Java application and a Java applet is that a Java application is a program that can be executed using the Java interpeter, and a JAVA applet can be transfered to different networks and executed by using a web browser (transferable to the WWW).

Isto e util? Adicionar comentario Ver comentarios
 

Pergunta 137. Name 7 layers of the OSI Reference Model?


-Application layer
-Presentation layer
-Session layer
-Transport layer
-Network layer
-Data Link layer
-Physical layer

Isto e util? Adicionar comentario Ver comentarios
 

Pergunta 138. What are the advantages and disadvantages of B-star trees over Binary trees?


Answer1
B-star trees have better data structure and are faster in search than Binary trees, but it?s harder to write codes for B-start trees.

Answer2
The major difference between B-tree and binary tres is that B-tree is a external data structure and binary tree is a main memory data structure. The computational complexity of binary tree is counted by the number of comparison operations at each node, while the computational complexity of B-tree is determined by the disk I/O, that is, the number of node that will be loaded from disk to main memory. The comparision of the different values in one node is not counted.

Isto e util? Adicionar comentario Ver comentarios
 

Pergunta 139. Write the psuedo code for the Depth first Search.


dfs(G, v) //OUTLINE
Mark v as "discovered"
For each vertex w such that edge vw is in G:
If w is undiscovered:
dfs(G, w); that is, explore vw, visit w, explore from there as much as possible, and backtrack from w to v. Otherwise:
"Check" vw without visiting w. Mark v as "finished".

Isto e util? Adicionar comentario Ver comentarios
 

Pergunta 140. Describe one simple rehashing policy.


The simplest rehashing policy is linear probing. Suppose a key K hashes to location i. Suppose other key occupies H[i]. The following function is used to generate alternative locations:
rehash(j) = (j + 1) mod h
where j is the location most recently probed. Initially j = i, the hash code for K. Notice that this version of rehash does not depend on K.

Isto e util? Adicionar comentario Ver comentarios
 
2) Name 7 layers of the OSI Reference Model? 3) What are the advantages and disadvantages of B-star trees over Binary trees?
4) Write the psuedo code for the Depth first Search.
5) Describe one simple rehashing policy.
" />

Mais uteis segundo os usuarios:

Copyright © 2026, WithoutBook.