employer cover photo
employer logo
employer logo

Siemens Digital Industries Software

Engaged Employer

Siemens Digital Industries Software Interview Question

Difference between Heap and Stack

Interview Answers

Anonymous

Feb 23, 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

Anonymous

Apr 9, 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

Anonymous

Nov 12, 2010

I had no clue