zsti

3b3i cpu & memory

Oct 2nd, 2017
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.32 KB | None | 0 0
  1. Understanding CPUs
  2. Every computer has at l……………………………. one processor, also called a central processing
  3. unit (CPU). The CPU c…………………………. millions of tiny t……………………………………. and
  4. pathways that take in data and instructions, process (calculate) the data according to the instructions, and output the results of the c…………………………………... A computer may also have smaller processors used in specific subsystems,
  5. such as a graphics processor. Most modern CPUs have multiple c………………………………., so they can complete multiple
  6. tasks s…………………………………………………….., as if they physically were more than one CPU. A core consists of a separate set of the essential processor components (control unit, ALU, and registers). Most models of the Intel i7 processor have
  7. four cores, for example. All the CPU’s cores are l…………………………………… on the same chip. In theory, the CPU is c………………………………. of executing a function with every tick of the system clock (called a clock cycle). However, in practice, the CPU sometimes is idle because there is a d………………………….. between the request for data to
  8. be retrieved from memory and its delivery. A delay caused by waiting for another component to deliver data is called latency. To help m…………………………………………….. latency, CPUs have caches. A cache is a small amount
  9. of very fast memory located near (or within) the CPU. Data that the CPU has recently used, or is p………………………………… to need soon, is placed in the cache for temporary holding.
  10.  
  11. Understanding Memory
  12. Like the memory in the human brain, computer memory s………………………… data. Also like human memory, there is both short-term (t…………………………………….) and long-term (p…………………………………..) memory storage. Some memory is dynamic, in that it stores data only until the computer is t…………………………… off. Dynamic memory (also called volatile memory) must be constantly r………………………………………….
  13. Static memory (also called non-volatile memory) retains whatever you put in it indefinitely.
  14.  
  15. Another way to classify memory is whether it can be overwritten with
  16. new data or not. Random Access Memory (RAM) can be rewritten
  17. freely; Read-Only Memory (ROM) cannot (at least not in the same
  18. way that RAM can; see the following Note). All ROM is static, but RAM
  19. can be either dynamic (more common) or static.
  20.  
  21. How Computers Use Memory
  22. System memory: The main memory in a computer system, such as the RAM installed on the PC’s
  23. m…………………………………………, is dynamic RAM (DRAM). System memory is installed in slots on the motherboard, p………………………………………….. to the motherboard itself.
  24.  
  25.  
  26. Component memory: Many components have a small a…………………………………… of memory built in for their own use.
  27. For example, a printer might have RAM that holds the information about the page it is printing, and
  28. a display adapter might have memory to hold the data about the image it is d………………………………………… on the monitor. Component memory is typically DRAM unless the component’s function r…………………………………….. it to be otherwise because that’s the l……………………………… expensive kind.
  29.  
  30. Paging file
  31. Windows also uses v……………………………. memory to help p……………………………. a computer from running out of memory. Virtual memory is a file on the hard drive used as an e…………………………………… to main memory. This file is called the paging file or swap file. When the physical memory gets full (or nearly full), Windows m…………………………. some data to the paging file on the hard drive. When a program r………………………….. that data, Windows moves something else out of memory, swaps the
  32. old data back in again, and then responds to the request.
  33.  
  34.  
  35. Quick Review
  36. 1. What are the three main components inside a CPU?
  37. 2. What is the purpose of a cache?
  38. 3. What is a multi-core CPU?
  39. 4. Discuss modern CPUs APUs.
  40. 5 Discuss swap file
  41. 6
Advertisement
Add Comment
Please, Sign In to add comment