answersLogoWhite

0

What is internal dynamic memory?

Updated: 8/17/2019
User Avatar

Wiki User

13y ago

Best Answer

A way or organizing different types of data in the phone's memory. Also referred to as Shared memory.

Dynamic memory means that all types of data are stored in the same memory (there is no separate memory for photos, ringtones etc.).

An advantage of dynamic memory over partitioned memory is that it is more flexible - with partitioned memory, you can fill up the photo memory for example and you won't be able to take any more photos even if other types of memory are free.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is internal dynamic memory?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is relocatable Dynamic Memory external or internal fragmentation?

external fragmentation


Why main memory use dynamic memory rather than static memory?

Dynamic memory changes and static stays the same.


What is the full form of dram?

DRAM is dynamic RAM or, if you prefer, dynamic random-access memory.


Difference between internal fragmentation and external fragmentation in operating system?

Fragmentation occurs in a dynamic memory allocation system when many of the free blocks are too small to satisfy any request. External Fragmentation: External Fragmentation happens when a dynamic memory allocation algorithm allocates some memory and a small piece is left over that cannot be effectively used. If too much external fragmentation occurs, the amount of usable memory is drastically reduced. Total memory space exists to satisfy a request, but it is not contiguous. Internal Fragmentation: Internal fragmentation is the space wasted inside of allocated memory blocks because of restriction on the allowed sizes of allocated blocks. Allocated memory may be slightly larger than requested memory; this size difference is memory internal to a partition, but not being used


Which memory is difficult to interface with processor?

dynamic memory


What is static and dynamic memory?

A computer is built to contain two kinds of memory. There is static memory, which stays in the computer after it is powered off. Then there is dynamic memory, which is memory that is only accessible while the computer is on. The hard drive is an example of static memory, while RAM is an example of dynamic memory.


What is dynamic mamory?

Dynamic memory refers to memory that is allocated and deallocated during program execution, as opposed to static memory which is allocated at compile time. In C and C++, dynamic memory allocation is done using functions like malloc() and free(), allowing for flexibility in managing memory resources at runtime. However, improper use of dynamic memory can lead to memory leaks or segmentation faults.


What is the maximum size of memory available for dynamic memory allocation?

The maximum memory that can be dynamically allocated depends on the size of the heap memory. Dynamic blocks of memory can be allocated in system heap until it is not full.


Stack can be described as a pointer Explain?

Stack is also dynamic memory, without the hassle. Dynamic memory uses pointers to check its value, free the memory, etc.


Definition of internal fragmentation and external fragmentation?

External Fragmentation: External Fragmentation happens when a dynamic memory allocation algorithm allocates some memory and a small piece is left over that cannot be effectively used. If too much external fragmentation occurs, the amount of usable memory is drastically reduced. Total memory space exists to satisfy a request, but it is not contiguous. Internal Fragmentation: Internal fragmentation is the space wasted inside of allocated memory blocks because of restriction on the allowed sizes of allocated blocks. Allocated memory may be slightly larger than requested memory; this size difference is memory internal to a partition, but not being used


Difference between fixed partition and dynamic partition in memory management?

Fixed partitions have fixed size and usually cannot be easily expended or shrunk. Dynamic partitions can change size by themselves when they need it. There are some advantages of using fixed partitions because you control its size. It might happen that you can run out of free space when you are using dynamic partitions.


C plus plus uses dynamic memory management?

No, C++ does not use dynamic memory management. The programmer is entirely responsible for releasing dynamic memory when it is no longer required. When static objects fall from scope, their destructors are called automatically, but there is no automatic garbage collection for dynamic objects. Allocated memory remains allocated until the programmer manually releases it, or the thread that owns the memory is terminated.