answersLogoWhite

0

How do you delete virtual memory?

User Avatar

Angela555

Lvl 1
15y ago
Updated: 8/18/2019

Don't delete the virtual memory. It is essential to the running of your operating system.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How do you read virtual memory?

Find a virtual psychic to read your virtual memory.


We have been getting a warning on your comp about our virtual memory being low how does this happen and how do we fix it?

You need to delete some programs or buy a new ram card to make memory bigger!


How does virtual memory work?

virtual memory works just like as temporary memory does


What is deffernce between virtual and physical memory?

The difference between virtual and physical memory is that virtual memory refers to memory space while physical memory are chips like RAM. The memory space for virtual memory is made by operating system when there is insufficient physical memory.


Tcp ip protocol stack reported that it ran out of memory?

main cause is spyware or malware or virus - scan and delete the virus\worm\spy sometime it happen due to low memory - increase virtual memory


What does the computer use when RAM is full?

Virtual memory, the answer is virtual memory.


When virtual memory is invented?

Virtual memory was invented in the early 1960s


Under Windows 2000XP physical memory and virtual memory are both managed by what?

Virtual Memory Manager


What is the difference between bitween pagefile and virtual memory?

pagefile is the virtual memory


What is another name for virtual memory?

Virtual Memory-: Virtual Mem is also known as Swap memory. Swap memory:- Swap mem is the type of memory which allocates by the harddisk in the form of extra RAM for better functioning of the application in the case if you are facing a lack of RAM in order to run that software


What type of memory stores data in a swap file on a hard drive high memory virtual memory extended memory random access memory?

virtual memory


What is the use of keyword virtual?

New is used to dynamically allocate memory in C++. It will also call the default constructor of a class that is created with it. int *array; // First declare a pointer array = new int [5] // Allocate enough memory for a 5 element int array // To deallocate your memory when you are finished with it, you must call delete on your pointer delete[] array; myClassType *mct = new myClassType; // example for class ... delete mct; // class delete The virtual keyword means that the class has a static virtual table (vtable) containing function pointers for each type of the class. This enables polymorphism by allowing a pointer to the base class to be assigned an address of any instance of the class in the hierarchy, and then invoking a method through that pointer - which will properly choose the correct method for that class type. Virtual also ensures that the constructors and destructors are invoked in the correct order.