employer cover photo
employer logo
employer logo

Siemens Digital Industries Software

Azienda coinvolta

Domanda di colloquio di Siemens Digital Industries Software

Difference between Heap and Stack

Risposte di colloquio

Anonimo

23 feb 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

Anonimo

9 apr 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

Anonimo

12 nov 2010

I had no clue