{ "q08": { "type": "blank", "question": "\n\nTwo optimizations implemented by VMS and later copied by modern operating\nsystems are: ____, which involves only zeroing a page when it is utilized,\nand ____, which involves only copying a page from one address space to\nanother when the page is written to (otherwise it is shared).\n\n\n" }, "q09": { "type": "single", "question": "\n\nGenerally speaking, which of the following is the most effective way of\nimproving the performance of your computer?\n\n\n", "responses": { "turbo": "Use the turbo button.", "openbsd": "Use OpenBSD.", "policies": "Tweak your current OS to use better policies.", "linux": "Use Linux.", "windows": "Use Windows.", "ram": "Buy more RAM." } }, "q02": { "type": "multiple", "question": "\n\nWhich of the following statements regarding page faults is true (select all\nthat apply)?\n\n\n", "responses": { "handler": "When a page fault occurs, the page fault handler in the OS is invoked.", "swap": "If a page is not present has been swapped to disk, the OS will raise an exception.", "illegal": "A page fault occurs when we access an illegal memory address.", "valid": "The valid bit records whether or not a page is in physical memory.", "overlap": "While servicing a page fault for one process, another ready process can run.", "physical": "A page fault occurs when we access a page not in physical memory." } }, "q03": { "type": "blank", "question": "\n\nWhenever memory is full, we may need to ____ one or more pages in memory to\nmake room for new pages that we wish to ____. To decide which pages to\n____, we will need to implement a ____ policy.\n\nTo determine when to evict pages, we have some kind of ____ and ____ to\nhelp decide when to start swapping pages. In this system, a ____ runs in\nthe background and watches for when we have too few pages available. When\nthis happens, the daemon evicts pages until we reach our threshold.\n\n\n" }, "q01": { "type": "blank", "question": "\n\n\nIn a modern machine, we typically have a ____ or different levels of data\nstorage. At the bottom, we have the ____, which is the largest but also\nthe slowest. In the middle, we have ____, which is where we usually put\nthe bulk of our active data. At the very top, we have storage inside the\nCPU in the form of on-chip ____ and a small set of ____, which are small\nbut very fast.\n\nTo support the illusion of a large virtual memory for multiple\nconcurrently-running processes, the OS can utilize ____, which is a portion\nof disk used to move pages back and forth.\n\n\n" }, "q06": { "type": "blank", "question": "\n\nWhen memory is oversubscribed, we may begin ____ or constantly be paging.\nIdeally, the OS would have a way to reduce a processes' ____ or active\npages. On Linux, however, we have a crude mechanism called the ____ which\nchooses a memory-intensive process and kills it.\n\n\n" }, "q07": { "type": "single", "question": "\nWhy does a NULL pointer access cause segfaults?\n\n", "responses": { "positive": "The MMU only supports non-zero addresses.", "thrashing": "To prevent thrashing.", "reserved": "That address is reserved for the operating system.", "invalid": "Page 0 is always marked invalid." } }, "q04": { "type": "order", "question": "\n\nMatch the following page-replacement policies with the following\ndescriptions:\n\n
    \n\n
  1. In this policy, pages are evicted in the order in which they\n arrive.
  2. \n\n
  3. In this policy, any page is picked and evicted.
  4. \n\n
  5. In this policy, we use history to determine which page to evict.
  6. \n\n
  7. In this policy, we utilize the use or reference bit to approximate\n the use of history.
  8. \n\n
\n
\n", "responses": { "random": "Random", "lru": "LRU", "fifo": "FIFO", "clock": "Clock" } }, "q05": { "type": "blank", "question": "\n\nTo determine when to bring a page into memory, the OS needs to define a\n____ policy. For instance, it can perform ____, which means a page is\nbrought into memory when it is accessed. It can also perform ____, which\nmeans the OS guesses that a page is about to be used and thus brings it in\nahead of time.\n\nThe OS also needs to determine when to write a page to disk. For instance,\nit may choose to perform some sort of ____ where it collects a number of\npending writes together in memory and then writes them to disk in one (more\nefficient) write.\n\n" } }