What is a heap in MVC?

Asked 7 years ago
Viewed 1031 times

1 Answer


0

“Heap in MVC” 
Heap is used for dynamic memory allocation and it allocates the memory at runtime. In a heap, memory is allocated randomly and there is no limitation of size. In heap, you can allocate or de-allocate the block many times as per user requirement. And accessing of the object is so difficult in comparison of the stack. It also takes much more time for memory allocation.

For Example 
What is a heap in MVC?
answered 6 years ago by Arti Mishra
  1. Thank You for the answer. - Anonymous User 6 years ago

Your Answer