distinguish between physical addresses and logical address?
Answer Posted / ravi a joshi
Though the answer is not simple, it is not too difficult
either to understand. Please bear with me for a long answer:
Every modern day computer can address a huge amount of
system memory. The system memory is something the
OS/Processor setup uses during the normal operation of the
computer. Intel's i386 onwards, the processors can address
up to 4 GB of memory. This directly depends on the number of
address lines the processor has. This 4 GB of memory is
called Physical Memory. In other words, if your system has 1
GB of RAM installed, that is called your physical memory.
This is solely used by Memory Management Unit (both on-chip
and software).
However, the CPU does not understand the concept of physical
memory so neatly as we do. Since, the addressing it is
expected to do is instructed from operating system and
operating system understands virtual addresses. Hence, There
is a need to make these two address types meet at one common
place and that is logical address.
In short, CPU receives virtual address from OS, converts it
to logical address to address the physical address, pheww...
Hope that makes it clear !!!
| Is This Answer Correct ? | 138 Yes | 21 No |
Post New Answer View All Answers
Which unix command lists files/folders in alphabetical order?
How do I delete files from command prompt?
What is the use of awk command in unix?
What is grep in bash?
Enlist some filename manipulation commands in unix.
What is awk used for?
How do I run a whois command?
Which command is used to restrict incoming messages?
What does the command ' $who | sort –logfile > newfile' do?
What is command statement?
Who wrote grep?
How is the command '$cat file2 ' different from '$cat >file2 and >> redirection operators ?
Write a command that will find all text files in a directory such that it does not contain the word "amazing" in any form (that is, it must include the words amazing, amazing, or amazing)?
What is the search command in unix?
What is nr in awk command?