Question
Programming language

Q2. For each of the Storage Binding approaches below give a short description Storage Binding Static Stack-Dynamic Explicit Heap-Dynamic mic Implicit Heap Dyna
0 0
Add a comment Improve this question Transcribed image text
Answer #1

Before we go to detailed explanation of storage binding techniques, let us have some knowledge on terminology used to explain the storage binding techniques.

Run-time: It is the time when program is executed.

Compile-time:It is the time when program is compiled. For example object file is created and linking and loading is done.

Memory complexity is a measure to analyse algorithm and programming techniques.

There are various kinds of storage management techniques like

Static Allocation:

In Static storage allocation technique, memory is allocated at the time of compilation and the every variable location is fixed and no changes to the memory allocation is made while compile time.

In this allocation and binding were done at compile time.

In fortran static storage allocation was implemented, where all parameters are passed by reference and no parameters are passed by value.

As the storage is considered as important factor of run-time of programme, initially static storage allocation method was chosen.

Stack – Dynamic allocation:

In dynamic allocation memory is allocated at run time. In this technique a stack of memory is maintained and the allocation is done in stack and deallocation is like pop technique in stack.

If a function was called all the memory of the function is allocated on the stack and it is called the activation record. This kinda of storage consists of return values and address space allocated.

This is in c and c++ of static arrays.

Allocation is operated by the top pointer of the stack and deallocation is popping by modifying the top pointer.

Flexibility is the main advantage of this techniques

It costs high and dynamic type binding must be implemented by the interpreters which consume the more execution time.

This was first introduced in 1960 and algol 60 introduced by peter naur.

Explicit Heap dynamic allocation:

In this it consists of highly disorganized heap and the variable allocated and de-allocated at compile time.

Only a system call or sub program can create the explicit heap dynamic variable .

The organization of cells is highly disorganized.

Allocation and deallocation of heap is only done through reference or pointer variables.

Tress or linked lists are implemented using explicit heap dynamic variable.

It has disadvantage in difficulty in handling pointers and reference of variables.

It costs high and the space complexity can never be estimated as it is dynamic.

Implicit Heap-dyanmic Variables:

These are bounded to the heap and it has high flexibility where assigned values are bounded to heap storage.

These are adapted accordingly where attributes of the variable are bound .

It has the highest rate of flexibility.

Disadvantage is range maintenance like in array and error detection is difficult.

Add a comment
Know the answer?
Add Answer to:
Programming language Q2. For each of the Storage Binding approaches below give a short description Storage...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • NEED ASAP PLEASE WILL GIVE GOOD RATE RIGHT AWAY FOR ALL ANSWERS! MULTIPLE CHOICE no explanation...

    NEED ASAP PLEASE WILL GIVE GOOD RATE RIGHT AWAY FOR ALL ANSWERS! MULTIPLE CHOICE no explanation needed SPRING Cs 424-524 aUESTION 1 12 points each, 30 points total +2 extra) Multiple 1. The main reason to include enumeration types in a programming language is to TEST2 choice: circle or check the best answer a. Make programs run faster b. Improve program readability c. Eliminate unnecessary /O d. Reduce type errors 2. A C++ value parameter is an example of a....

  • Hello, I need help with the following Programming Language Structures problems below, thank you Statically-typed languages...

    Hello, I need help with the following Programming Language Structures problems below, thank you Statically-typed languages can be more efficient because Select one: a. type conversions are not required in assignments. o b. There is no inherent efficiency advantage to static typing; many statically typed languages are more efficient because compilation of these languages has been studied longer. O c the correct object code operation for each source code operation can be determined once at compile time, rather than each...

  • Using Java programming: Modify the delimiter class (provided below) so that it can "incorrectly" ...

    Using Java programming: Modify the delimiter class (provided below) so that it can "incorrectly" evaluate simple parenthesized math expressions . a) ask the user for the whole expression to solve b) Solve the expression only if there is no mismatch in the delimiters. If there is a mismatch, then output an error. If there is an error, allow the user to reenter a corrected/new expression. c) The program should be able to evaluate expressions that uses only the following basic...

  • 1. (p. 2-3.) Which of the following is NOT a reason for studying concepts of programming...

    1. (p. 2-3.) Which of the following is NOT a reason for studying concepts of programming languages according to Sebesta? a. Increased capacity to express ideas. b. Improved background for choosing appropriate languages. c. Increased ability to design new languages. d. Increased ability to learn new languages. 2. (p. 5-6.) What programming language has dominated scientific computing over the past 50 years? a. FORTRAN b. ALGOL c. SNOBOL d. PL/I 3. (p. 6.) What programming language has dominated artificial intelligence...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT