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
smal talk is pure object oriented or not?
what are the topics choosen for jam round for interviews
will it allow to add same value in HashMap class.
sample and simple coding where we get?
WHat is execution in manual testing and when will we start execution and what language we use in execution
Tell me the jobs for the MCA Fresher in delhi, Noida..
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?
< DL Compact > tag is used for
Write a shell program to test whether a given year is leap year or not ?
iam confused among testing ,.net and java. can anybody help me.
In mainframe SDSF, Can we copy the list of jobs currently executing in SDSF in to a seperate DATASET...?
what is the diffrence between software and hardware language?
WHAT IS THE MEANING OF CONSTANT ...EXEEDS LENGTH LIMIT WHILE COPYING FROM PS FILE TO KSDS
what is an INI file?
5.Call by value and Call by reference with program?