What is the maximum amount of memory any single process on
Windows can address? Is this different than the maximum
virtual memory for the system? How would this affect a
system design?

Answer Posted / kunal

Actually processes access virtual memory space, not physical
memory. Applications never access RAM directly but only
through the memory management interface of the processor.
All processes have a 4GB virtual address space. The upper
2GB is common to all processes and is used by the system.
The lower 2GB is private to each process and is inaccessible
to all others. This is completely independent of the size of
RAM or the page file. The system maps physical memory into
this virtual address space according to both need and
availability.
At any given time the data in virtual memory space might be
stored in RAM, on disk, or both. All of this is totally
transparent to all applications. Frequently accessed data
will be kept in RAM with the remainder left on disk.

Is This Answer Correct ?    6 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

differences between qtp10.0 and 11.0 ?

2089


how much fee for deccan soft institute .how to block seat for sandeep sir class reply soonnnn 

1968


how CLR identify vb file?

2763


For a binary tree with n nodes, How many nodes are there which has got both a parent and a child?

3449


hi i m deepak my shedule for NIC pi is 17 Apr please contact me if anybody has interview on same day or give me some idea who have faced

1821


When we delete logfiles such as screenshots how does it affect the ldf file? Ive seen huge change while adding screenshots in the ldf file but a very minor one deleting them.Please Explain

1672


Which design patterns have you used?

1774


Wrtite a JCL for sorting a file with start from 36 postion lenth 9 excluding a num eq to 98768. for 3 marks mainframe

1698


what is meant by life cycle of a business

1943


I have try to write a record in a TDQ from a fle.... what are the steps to do... can anybody plz come with a solution

2485


Write a program to find factorial of a number using functions

1500


How does the TCP handle the issue of multiplexing?

2629


What is diffrent between Method and and function in c#

1800


Write a program to find whether a given number is prime or not.

830


You are given some denominations of coins in an array (int denom[])and infinite supply of all of them. Given an amount (int amount), find the minimum number of coins required to get the exact amount. What is the method called?

877