answersLogoWhite

0


Best Answer

1. It is a Primitive Operating System.

2. Usually in low memory where interrupt vectors are placed.

3. It Isolate user from physical address space using logical address space

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the use of resident monitor in memory management?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the purpose of memory that is to optimize the use of random access memory?

memory management


What computer parts or functions are described by Hz?

monitor Refreash rate of the monitor or of memory use CPS which is Hz.


What is mean by resident monitor?

A Resident monitor (1950s-1970s) was a piece of software that was an integral part of a general-use punch card computer.additional ;Its main function is to control transferring of Computer from one job to another job


Which Windows utility can be used to monitor the performance of the processor memory and hard drive and save the monitor data in logs for future use?

Performance Monitor


What is the memory management operator in c plus plus?

There is no memory management operator in C++ -- it is an unmanaged language. You use the C++ new operator to allocate memory, and use the C++ delete operator to release previously allocated memory.


When you perform compaction in memory management system?

When the memory resources are scarce. We use compaction.


What Windows utility can be used to monitor the performance of the processor memory and hard drive and save the monitored data in logs for future use?

Performance Monitor


What is the purpose of memory management?

cpu


Functions of the memory manager?

Memory management functions handle the allocation and deallocationof dynamic Memory. These functions form an abstraction layer above the standard C memory management functionsmalloc, free, and realloc.This block of functions can be replaced by the user with custom code to implement a different memory management scheme. For example, an embedded system application might want to use a fixed-sized static block from which to allocate.


What are new and delete operators in c plus plus?

New and Delete are the memory management operators in c++,like c language we use malloc() and calloc() functions to allocate memory and free() functiong to release the memory similarily we use new to allocate memory in C++ and Delete to release the allocated memory....


How do you use Resident Alien in a sentence?

Maybe use it in "The Alien Resident entered the village.". It means a new, and not native, Resident.


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.