employer cover photo
employer logo
employer logo

Siemens Digital Industries Software

Employeur impliqué

Question d’entretien chez Siemens Digital Industries Software

Difference between Heap and Stack

Réponses aux questions d'entretien

Utilisateur anonyme

23 févr. 2011

all objects get stored in heap while all value type get stored in stack..heap automatically maage memory using garbage collection..while in stack explicitly memory is managed using destructors..in heap,CLR is responsile for memory management.

2

Utilisateur anonyme

9 avr. 2017

Heap : When you try to allocate memory by using "new " keyword .The memory will be stored in heap memory. Stack : The memory will be allocated automatically and free automatically once variable out of the scope

Utilisateur anonyme

12 nov. 2010

I had no clue