Answer Posted / kannan.s
When a program is loaded into memory, it is organized into
three areas of memory, called segments: the text segment,
stack segment, and heap segment. The text segment
(sometimes also called the code segment) is where the
compiled code of the program itself resides. This is the
machine language representation of the program steps to be
carried out, including all functions making up the program,
both user defined and system.
The remaining two areas of system memory is where storage
may be allocated by the compiler for data storage. The
stack is where memory is allocated for automatic variables
within functions. A stack is a Last In First Out (LIFO)
storage device where new storage is allocated and
deallocated at only one ``end'', called the Top of the
stack.
| Is This Answer Correct ? | 5 Yes | 5 No |
Post New Answer View All Answers
what is collections in .net? why we use?
What is the difference between final finally and finalize in c#?
Differentiate between static class and singleton instance?
Is it possible to force garbage collector to run?
What are the differences between a class and a struct?
What is before string in c#?
What is data quality assurance?
What does mean before a string in c#?
If you donot specify an access modifier for a method, what is the default access modifier?
What is meant by clr?
What is the use of ispostback in c#?
What is serialization in unity?
How do you access a constant field declared in a class?
Why do we use class in c#?
How do you set a class path?