What is meant by cache memory?
In a computer, cache memory is a special type of fast access memory that is between the CPU and the main memory. If the CPU always had to access main memory, it would spend most of its time idle waiting for that memory to respond. But because memory accesses statistically tend to cluster around each other in real programs instead of completely randomly scattering across memory, a single CPU memory access can cause the cache memory controller to perform a fast burst access of main memory including that address to load an entire "line" of cache memory. If a following CPU memory access is in this same "line" of cache memory that has already been loaded, it will not have to wait for the main memory to respond, instead the cache responds first providing the copy it has of that address' contents.
Cache memory was originally invented in the late 1950s by IBM for their 7030 Stretch supercomputer (a machine built entirely using discrete germanium transistors, no integrated circuits at all). However all the 7030 documents use the term "virtual memory" for what is now universally called cache memory, and "virtual memory" means something entirely different now.
Each cache memory unit is composed of three sections:
Cache memory is organized into levels (L1, L2, L3, etc.) with the L1 Cache closest to the CPU and each additional level further away until the final Cache level connects directly to the memory. The L1 Cache uses the fastest speed SRAM but has the smallest amount of SRAM and each additional level uses slower speed SRAM but has more SRAM than the previous level. The L1 Cache is usually divided into two independent Caches (L1 Instruction Cache and L1 Data Cache) and is dedicated to supporting only one CPU but each additional level is usually a single Cache (shared by both instructions and data) and in systems having multiple CPUs may be shared by two or more CPUs. In systems having multiple CPUs the cache controllers must implement special bus protocols to coordinate line invalidations and updates to prevent some of the CPUs from accessing obsolete Cache contents from its Caches when a different CPU that does not use those Caches has modified memory that is mapped to both its local Caches and the other CPUs local caches.
Proper design of a Cache memory system for a computer requires extensive simulation of typical real code expected to be used on the system. Any problems found must be corrected, so that the Cache usage will remain even and balanced, and anticipated performance verified.
The computer that can move data and instructions between storage and memory in a process is called?
sawpping
How much ram is installed on Toshiba laptop?
Totally depends on how much RAM was installed. Click Start - Run then type dxdiag.exe and click enter. It will tell you how much memory you have. Or, if you are wondering about hard drive space, it will tell you that as well.
What part of the computer stores programs and data that are currently being used by the processor?
a hard cop[y of a file you created on your computer would be
How much memory does AVG antivirus take up on your computer?
It should take about 8 or more, but i like it because its not a huge program like avast or avg and other ones.
SRAM is Static Random Access Memory meaning binary information is stored and does not need a refresh period to maintain the content providing the power is stable. Donna
How much RAM and ROM do you need?
Read-Only Memory (ROM) One major type of memory that is used in PCs is called read-only memory, or ROM for short. ROM is a type of memory that normally can only be read, as opposed to RAM which can be both read and written. There are two main reasons that read-only memory is used for certain functions within the PC: * Permanence: The values stored in ROM are always there, whether the power is on or not. A ROM can be removed from the PC, stored for an indefinite period of time, and then replaced, and the data it contains will still be there. For this reason, it is called non-volatile storage. A hard disk is also non-volatile, for the same reason, but regular RAM is not. * Security: The fact that ROM cannot easily be modified provides a measure of security against accidental (or malicious) changes to its contents. You are not going to find viruses infecting true ROMs, for example; it's just not possible. (It's technically possible with erasable EPROMs, though in practice never seen.) Read-only memory is most commonly used to store system-level programs that we want to have available to the PC at all times. The most common example is the system BIOS program, which is stored in a ROM called (amazingly enough) the system BIOS ROM. Having this in a permanent ROM means it is available when the power is turned on so that the PC can use it to boot up the system. Remember that when you first turn on the PC the system memory is empty, so there has to be something for the PC to use when it starts up. See this section for a description of the system BIOS ROM; see here for a description of the system boot sequence. While the whole point of a ROM is supposed to be that the contents cannot be changed, there are times when being able to change the contents of a ROM can be very useful. There are several ROM variants that can be changed under certain circumstances; these can be thought of as "mostly read-only memory". :^) The following are the different types of ROMs with a description of their relative modifiability: * ROM: A regular ROM is constructed from hard-wired logic, encoded in the silicon itself, much the way that a processor is. It is designed to perform a specific function and cannot be changed. This is inflexible and so regular ROMs are only used generally for programs that are static (not changing often) and mass-produced. This product is analagous to a commercial software CD-ROM that you purchase in a store. * Programmable ROM (PROM): This is a type of ROM that can be programmed using special equipment; it can be written to, but only once. This is useful for companies that make their own ROMs from software they write, because when they change their code they can create new PROMs without requiring expensive equipment. This is similar to the way a CD-ROM recorder works by letting you "burn" programs onto blanks once and then letting you read from them many times. In fact, programming a PROM is also called burning, just like burning a CD-R, and it is comparable in terms of its flexibility. * Erasable Programmable ROM (EPROM): An EPROM is a ROM that can be erased and reprogrammed. A little glass window is installed in the top of the ROM package, through which you can actually see the chip that holds the memory. Ultraviolet light of a specific frequency can be shined through this window for a specified period of time, which will erase the EPROM and allow it to be reprogrammed again. Obviously this is much more useful than a regular PROM, but it does require the erasing light. Continuing the "CD" analogy, this technology is analogous to a reusable CD-RW. * Electrically Erasable Programmable ROM (EEPROM): The next level of erasability is the EEPROM, which can be erased under software control. This is the most flexible type of ROM, and is now commonly used for holding BIOS programs. When you hear reference to a "flash BIOS" or doing a BIOS upgrade by "flashing", this refers to reprogramming the BIOS EEPROM with a special software program. Here we are blurring the line a bit between what "read-only" really means, but remember that this rewriting is done maybe once a year or so, compared to real read-write memory (RAM) where rewriting is done often many times per second! Note:One thing that sometimes confuses people is that since RAM is the "opposite" of ROM (since RAM is read-write and ROM is read-only), and since RAM stands for "random access memory", they think that ROM is not random access. This is not true; any location can be read from ROM in any order, so it is random access as well, just not writeable. RAM gets its name because earlier read-write memories were sequential, and did not allow random access.
Finally, one other characteristic of ROM, compared to RAM, is that it is much slower, typically having double the access time of RAM or more. This is one reason why the code in the BIOS ROM is often shadowed to improve performance.
Random Access Memory (RAM) The kind of memory used for holding programs and data being executed is called random access memory or RAM
. RAM differs from read-only memory (ROM) in that it can be both read and written. It is considered volatile storage because unlike ROM, the contents of RAM are lost when the power is turned off. RAM is also sometimes called read-write memory or RWM. This is actually a much more precise name, so of course it is hardly ever used. :^) It's a better name because calling RAM "random access" implies to some people that ROM isn't random access, which is not true. RAM is called "random access" because earlier read-write memories were sequential and did not allow random access. Sometimes old acronyms persist even when they don't make much sense any more (e.g., the "AT" in the old IBM AT stands for "advanced technology" :^) ). Obviously, RAM needs to be writeable in order for it to do its job of holding programs and data that you are working on. The volatility of RAM also means that you risk losing what you are working on unless you save it frequently. RAM is much faster than ROM is, due to the nature of how it stores information. This is why RAM is often used to shadow the BIOS ROM to improve performance when executing BIOS code. There are many different types of RAMs, including static RAM (SRAM) and many flavors of dynamic RAM (DRAM).
Sources:www.pcguide.com
1 gb = 1024 megabytes
so if you want to get the answer to how much megabytes are in 500 gigabytes, you would just have to do simple multiplication
500gb x 1024mb = 512,000 megabytes
512,000 megabytes is equal to 500 gigabytes
What type of socket used to install system memory?
What type of socket is used to install system memory
Secondary Storage Devices (such as Harddisk drives) which are non-volatile in nature stores all data that is put into computer even after the computer is truned off.
How much memory can be address with 32 bit address bus?
32 bit address bus can access more than 4 gigabytes (232) of memory.
Sandeep Kr. Singh (MCA)
Is EEPROM a volatile or nonvolatile memory?
Non-volatile. It retains its memory even if power is removed.
What is the memory on a CPU called?
Level 1 Cache (L1 cache)
There are L1, L2, and L3 cache. There is also a memory controller within the processor package. Level 1 is on the die while L2 is off. Level 3 is a shared cache. These act similar to RAM sticks on your motherboard however, they hold their data a lot longer. The RAM on your motherboard is called Dynamic RAM and the RAM in your memory cache is Static RAM. Static RAM costs way more than Dynamic RAM. Hope this helps.
How many bytes of memory on a 128MB computer?
The memory is to be designed so that 16-bitdata can be accessed in one .Two 64K X 8 SRAM chips have a capacity of 128KB.
How do you increase virtual memory?
If you want to increase virtual memory, you need to right click on "my computer" go to "properites" goto "Advanced System Settings" (or system or something like that), under performance, click on settings, go to the "advanced" tab and Click on "Change" under virtual memory.
Its generally a good idea to let the system decide how much you need, but if you feel like changing it, i recommend that you use double the ammount of system RAM you have for the minimum and half again that for the max. IE if you have 1gb of ram. Use 2gb for the min and 3 for the max.
What is the memory capacity measured in?
bit
4=nybble
2=byte
1024=kilobyte
1024=megabyte
1024=gigabyte
1024=terabyte
1024=petabyte
1024=exabyte
1024=zettabyte
1024=yottabyte
1024=kiloyottabyte
1024=megayottabyte - No server is bigger than this.
1024=gigayottabyte
1024=terayottabyte
1024=petayottabyte
1024=exayottabyte
1024=zettayottabyte
1024=yottayottabyte
1024=kiloyottayottabyte
and so on.
Memory is made in powers of 2.
Like 1 2 4 8 16 32 64 128 256 512 1024 2048 4096 8192 16384
and so on.
How do you copy memory card to memory card?
HI.
let 's define the SD memory card as a portable disk which is meant to carry different types of files and data. there are also other types of cards like MMC, micro Sd, mini SD...
In order to copy data from your computer to the SD card, a connection should be established first.
there are mainly two known ways of connecting the Card to the Computer.
1. Connect via USB Data Transfer Cable : your SD card should be in it's support (the device that is supporting it, for example a mobile phone...) then the support is linked to the computer via the USB cable.
2. Transfer via Card reader : A device which resembles the slot entries found in satellite receivers. you simply plug your SD card into the entry "SD Card" and it's done, the computer will read it.
Once your Operating System (it should be Windows XP, Vista or Linux) has detected the plugged SD card it will automatically open it in a new window, you can simply drug and drop from the computer to the SD card by dropping the selected files (from compter) inside the SD card open window.
I hope that te answer helps you.
What kind of computer memory is measured in megabytes?
All Emory can be measured in megabytes (MB). The smallest unit is a byte, then kilobyte (1000 bytes), megabyte (1000 KB), gigabyte (1000 MB), terrabyte (1000 GB). A megabyte is just an increment. Just like a foot and an inch bother measure length.
What is a term that refers to the permanent storage of computer programs files and data?
read only memory
What does 512 MB of ram equal?
To give a basic overview of RAM and ROM: Read-only-memory refers to memory that cannot be changed. You have it in your computer under the form of a BIOS ROM chip. Files and programs are stored in non-volatile memory (such as hard drives) then transferred to Random-Access-Memory (RAM, usually called "memory" by the average person) to work with.
RAM (Random-Access-Memory) is what the computer works with. Most computers now days come out with at least 2GB of RAM (512MB is half a gigabyte).
RAM is one of the major deciding factors in how fast your computer runs. It can be upgraded but should only be upgraded by someone knowledgeable in the subject and shouldn't be attempted by a non-professional, especially while under warranty.
One of the reasons to get a higher amount of RAM is to run games. All games should have minimum specifications, which is the lowest amount of hard drive space, RAM, graphics et cetera to run the game. For example, The Sims 3 has a minimum specification of 2GB of RAM.
Programs can take up different amount of RAM. On average, on my laptop iTunes will take up around 500MB of RAM (though I have a large library and use the album art look), Google Chrome (my web browser) uses roughly 90MB with a few tabs open and Word 2010 uses roughly 55MB. However, these are only rough estimates and shouldn't be used as your only sources.
How do you overclock your motherboard?
There are several methods that people have used to overclock their processors:
1. Crystal Oscillator - A crystal oscillator is a small electronic component that generates a steady clock signal, expressed in MHz or KHz (ex. 27.1432 MHz) or. By replacing the clock signal with one that generates a higher clock (ex. 29.7265 MHz), you would make your processor also run faster. Although still possible, this method is more awkward on modern motherboards, because of the high internal multipliers and numerous buses running at lower speeds (curse you, PCI!). This method is still useful on many game consoles and portable devices, however.
2. Adjusting Front Side Bus speed (jumpers) - The processor always runs at a multiple of the Front Side Bus (FSB) speed. By increasing the FSB speed, the internal speed of the processor would also be increased. For instance, if the FSB speed is at 66 Mhz, and the multiplier is 3, the processor runs at 200 MHz. If the FSB is increased to 100 MHz, the processor will run at 300 MHz. This method has been largely replaced by doing it in the BIOS, since after the Socket 7 era.
3. Adjusting CPU multipliers (jumpers) - Adjuisting the multipliers for the CPU was a slightly easier and more reliable way to overclock, since it did not stress any other components, such as PCI or ISA. If the FSB was at 66 MHz, and the multiplier was at 3, the processor would run at 200 MHz. If the multiplier was changed to 4.5, the processor would run at 300 MHz. Intel locked the multipliers on all their processors after the Socket 7 era.
4. Adjusting Front Side Bus speed (BIOS) - Starting with the Pentium II era, Intel processor were multiplier-locked. The only method to increase the processor speed was to increase the FSB speed. This could be done in the BIOS of many non-OEM (ASUS, Abit, Tyan, DFI, and not Gateway, HP, Dell, or Acer) motherboards. Although it stressed the other buses slightly doing so, the higher multipliers in processors made even a small increase in FSB speed a large boost in clock speed. This method is still commonly used today.
5. Adjusting CPU multipliers (BIOS) - AMD left their multipliers unlocked for a long period of time. Even when they began locking them, they left them in a way that was easily unlocked again. Jumpers on the motherboard were replaced with settings in the BIOS. This method is not common today, although AMD still has some unlocked CPUs, and even Intel has begun unlocking their high-end enthusiast (Extreme) chips again.
6. Adjusting Front Side Bus (software) - The FSB speed, along with the other buses, is controlled nowadays by a chip known as a PLL. The crystal oscillator still exists, but it primarily serves as a reference clock signal for the PLL. The PLL is more often controlled through the BIOS, but special programs running in Windows are also available. This method is the only overclocking option available for many OEM motherboards (though some may still not work through this method). You will first have to reboot you computer into the BIOS ( usually by pressing the Delete key during start up). go to the Frequency Voltage control menu, find the entry called CPU FSB Clock, and increase it by the smallest amount possible (2MHz is usually a reasonable increment). Don't get impatient and try for a large jump, you'll have only yourself to blame if you fry a very expensive chip. Finally, save the settings and reboot your PC. Be aware that increasing the speed of the front-side bus also increases the speed of your system RAM, which could prove the limiting factor.
There are many ways to overclock, and there are a lot of resources available on the Internet. With that said, it is possible to overclock a device through utilities, possibly through human ingenuity, (for example, the pencil trick for computer motherboards) and much more.