

InterviewSolution
Saved Bookmarks
1. |
Which allocation requires the memory to be defined before building the application?(a) dynamic allocation(b) static allocation(c) linear allocation(d) straight allocationI have been asked this question in an interview for internship.My enquiry is from Buffer Memory in section Buffering and other Data Structures of Embedded Systems |
Answer» RIGHT answer is (b) static allocation Explanation: The static allocation requires the memory to be DEFINED before BUILDING the application and allocates the memory through the special DIRECTIVES at the ASSEMBLER level. |
|