Tagged Questions
93
votes
4answers
3k views
What happens when a computer program runs?
I know the general theory but I can't fit in the details.
I know that a program resides in the secondary memory of a computer. Once the program begins execution it is entirely copied to the RAM. Then ...
5
votes
10answers
6k views
Where are variables in C++ stored?
Where are variables in C++ stored?
Inside the RAM or the processor's cache?
3
votes
2answers
70 views
MIPS memory execution prevention
I'm doing some research with the MIPS architecture and was wondering how operating systems are implemented with the limited instructions and memory protection that mips offers. I'm specifically ...
3
votes
7answers
2k views
How are bits stored in memory? (In chunks? Can there be bits of multiple sizes stored toghether?)
I used to think that each memory location contains 8, 16, 32 or 64 bits. So 0101 would be stored in an 8 bit machine as 00000101 (sign extended if it was negative). This was all fine and dandy until I ...
2
votes
9answers
408 views
Can we have a computer with just registers as memory?
Registers are the fastest memories in a computer. So if we want to build a computer with just registers and not even caches is it possible? I think of even replacing the magnetic discs with registers ...
1
vote
1answer
99 views
Difference between high memory and high memory area
Can somebody please explain me the difference between the terms high memory and high memory area. I have always came across these terms. I searched a lot about these terms but still i didn't got ...
1
vote
6answers
564 views
32 vs 64 bit…or, what exactly does 'processing information' mean
I am having trouble understanding the difference between a 32 bit processor and 64 bit processor. I know that a 32 bit processor can access 32 bits at a time while a 64 bit processor can access 64 ...
0
votes
1answer
79 views
The CPU and Memory (value, register)
When a value is copied from one register to another, what happens to the value
in the source register? What happens to the value in the destination register.