Don't delete the virtual memory. It is essential to the running of your operating system.
Find a virtual psychic to read your virtual memory.
You need to delete some programs or buy a new ram card to make memory bigger!
virtual memory works just like as temporary memory does
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.
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
Virtual memory, the answer is virtual memory.
Virtual memory was invented in the early 1960s
Virtual Memory Manager
pagefile is the 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
virtual memory
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.