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’s thread.sleep() in threading ?
What are the benefits of using the aggregate method in linq?
What to implement on my class Finalize or IDisposable
Which namespaces are necessary to create a localized application?
What is the Signification of the "new " keyword in C#? example
Is post back in c#?
Show us in simple steps to create setup & deployment project for windows application?
Explain the advantage of using system.text.stringbuilder over system.string?
What is the purpose of dictionary in c#?
Explain the types of assemblies in .net?
Which debugging tools you can use in the .NET ssSDK?
What are modifiers in c#?
Are classes passed by reference in c#?
What are the differences between a class and a struct?
What is arraylist c#?