(Are you looking at a stale web page? Try refreshing your browser.)

( Latest Revision -- October 08, 2010 )
[10/08/2010: moved chapter 7 problems to HW #3]
[08/12/2010: initial updates]

Homework Problems for CS 3750




If you do a good job on the homework, you'll do better on tests. It's likely to raise your course grade by one full letter grade or more (e.g. from C to B, or from B to A).

Directions for homework submissions

When you do the homework, show mastery of the material. Leave no doubt that you know what you are talking about. Give thoughtful and complete answers. Explain your answers so as to demonstrate and prove to a skeptical reader that they are correct.

Put things into your own words. Do not copy, quote, or closely paraphrase the textbook or other people's writings.

Write so as to be understandable to a certain intended readership -- an intelligent person who has completed the prerequisites for CS 3750 but who has not yet taken CS 3750.

Keep an extra copy of everything you turn in. Homework will typically be due on the class day just prior to a test day. I will discuss answers to the homework immediately after collecting it. You will not receive back the homework paper you give me until sometime after you take the test.

Form and Format

Send e-mail to: john@ishi.csustan.edu


DUE DATES

For all homework due dates, see: the class schedule.



WARNING ABOUT PROBLEM NUMBERS

If you have an old edition of the textbook, or even a foreign version of the current edition, then the problem numbers in your book may not correspond exactly to those in the official course text. It is your responsiblity to make sure you work the right problems.


Homework Assignment #1

Chapter #01 -- Introduction
  1. Write 250 words or more describing the interplay between operating system software and the interrupt mechanism. In your writing show that you understand A) how interrupts "drive" the actions of the operating system, and B) how the interrupt mechanism in a modern computing system actually works (what hardware devices do to cause an interrupt and the sequence of events that take place between the time that the currently running program is interrupted and the time that program resumes execution).
Chapter #02 -- Operating System Structures
  1. Using information gleaned from chapters one and two, write 500 words or more describing the important functions and responsibilities of a modern multi-user, time-sharing operating system.

  2. Using information from section 2.7 write 250 words or more describing several different approaches to designing operating system structure. Discuss the advantages and disadvantages of each approach.
Chapter #03 -- Processes
  1. Write 250 words on the topic of programs and processes. Define what a program is and what a process is. Explain what the differences and similarities are between the two concepts. Explain and/or speculate on what operating system data structures must be employed in order to maintain and preserve a program. Answer the same question for a process. Give attention to similarities and differences regarding the data structures too. Use information distilled from your readings of chapter 3 to help you answer this question, and add whatever else you know that you think will be helpful. (Keep in mind the "intended readership" described in the directions above.)

WARNING ABOUT PROBLEM NUMBERS

If you have an old edition of the textbook, or even a foreign version of the current edition, then the problem numbers in your book may not correspond exactly to those in the official course text. It is your responsiblity to make sure you work the right problems.


Homework Assignment #2

Chapter #04 -- Threads
  1. Rewrite the essay you wrote in answer to the question for chapter #03. The directions are the same except that this time you must cover three concepts: program, process, and thread. In addition to adding information about threads, since you know more now you should be able to improve on what you said before about programs and processes.
Chapter #05 -- Scheduling
  1. Do problem 5.12 on page 220 (this involves making Gantt charts and calculating measures of the performance of several scheduling algorithms).

  2. Do problem 5.15 on page 221. (The problem starts with: "Consider a system running ten I/O-bound ...")
Chapter #06 -- Process Synchronization
  1. Do the problem in the file hymanProb.html in this directory. Please take note of the example "scenario" described in the problem statement. Make sure that the solution you construct is the same kind of specific and detailed scenario.

  2. A version of the "readers-writers problem" is described in the text in section 6.6.2. Propose a solution to the following variation on that readers-writers problem: readers and writers must be given access to the [database] resource in the order in which they request it. Readers share the resource to the greatest extent possible. Each writer accesses the resource exclusively.

    Write up your proposed solution using a format like the one used in figures 6.11 and 6.12 (and the explanation in the text above figure 6.11 of the meaning of the variables). In other words write pseudo code that shows what the shared variables are, pseudo code for writer processes, and pseudo code for reader processes. Also, like the solution shown in figures 6.11 to 6.12, use only semaphores for synchronization. However, note that the problem I am posing for you is different from the one in the text, so naturally you need to try to think of a solution that is different from what's in figures 6.11 and 6.12.

    Assumptions:


    In addition to enforcing exclusive writes and allowing shared reads, your solution should be starvation free, and satisfy the progress & bounded waiting requirements for solutions to critical section problems. (See section 6.2.)

    Note: The degree of difficulty of this problem may be high for you, but give it a try anyway. It's a good problem to think about.
Chapter #07 -- Deadlocks
  1. Do problem #7.20 on page 310. (The problem starts with: "Consider the following snapshot of a system ...") Show all your work (in detail). Use the same kind of format you see here.

WARNING ABOUT PROBLEM NUMBERS

If you have an old edition of the textbook, or even a foreign version of the current edition, then the problem numbers in your book may not correspond exactly to those in the official course text. It is your responsiblity to make sure you work the right problems.


Homework Assignment #3

Chapter #07 -- Deadlocks
  1. Do problem #7.20 on page 310. (The problem starts with: "Consider the following snapshot of a system ...") Show all your work (in detail). Use the same kind of format you see here.
Chapter #08 -- Memory Management
  1. Do problem 8.11 on page 352 (It starts "Given five memory partitions ... ").
  2. Do problem 8.13 on page 352 (It starts: "Compare the main memory organization ..."

  3. Do problem 8.20 on page 353 (It starts: "Consider a paging system with the page table stored in memory."

  4. Do problem 8.23 on page 353 (It starts: "Consider the following segment table"
Chapter #09 -- Virtual Memory
  1. Do the following problem. Show all work in detail.

    A virtual address of 76543656 (hex) appears in a program that is being run on a computer that does demand paging. The computer has 24-bit physical addresses, 32-bit virtual addresses, and a 1K-word page-size. How many physical frames are there? How many virtual pages are there? What are the page number and the offset corresponding to the virtual address? (Give the last two both in hex notation and decimal notation.)

  2. Do problem 9.21 on pages 412-413 (It starts: "Assume that we have a demand-paged memory. The page table is held in registers. ...").
Chapter #10 -- File-System Interface
  1. Do problem 10.10 on page 458 ("Consider a file system in which a file can be ...")

  2. Do problem 10.18 on page 459 ("Some systems provide file sharing by ...")
Chapter #11 -- File-System Implementation
  1. Do problem 11.10 on page 500 ("What are the advantages of the variant ...")

  2. Do problem 11.13 on page 501 ("Discuss how performance optimization ...")

  3. Do problem 11.14 on page 501 ("Consider a file system on a disk that has ...")

WARNING ABOUT PROBLEM NUMBERS

If you have an old edition of the textbook, or even a foreign version of the current edition, then the problem numbers in your book may not correspond exactly to those in the official course text. It is your responsiblity to make sure you work the right problems.


Homework Assignment #4

Chapter #12 -- Mass-Storage Structure
  1. Do problem 12.16 on page 548 ("Suppose that a disk drive has 5000 cylinders, numbered 0 to 4999 ...")

  2. Do problem 12.29 on page 550 ("Discuss the relative advantages and disadvantages ...")

  3. Do problem 12.35 on pages 551-552 ("Suppose that a one-sided 5.25-inch optical-disk cartridge ...")
Chapter #13 -- I/O Systems
  1. Do problem 13.1 on page 586 ("State three advantages of placing ...")

  2. Do problem 13.5 on page 586 ("How does DMA increase ...")

  3. Do problem 13.6 on page 586 ("Why is it important to scale up ...")
Chapter #14 -- Protection
  1. Do problem 14.1 on page 616 ("What are the main differences ...")

  2. Do problem 14.9 on page 617 ("Why is it difficult to protect ...")
Chapter #15 -- Security
  1. Do problem 15.1 on page 666 ("Buffer overflow attacks ...")

  2. Do problem 15.9 on page 667 ("Make a list of six security concerns ...")

  3. Do problem 15.13 on page 667 ("Why doesn't D(ke, N)(E(kd, N)(m)) provide ...")
Chapter #16 -- Distributed System Structures
  1. Do problem 16.2 on page 701 ("Under what circumstances is a token ...")

  2. Do problem 16.4 on page 701 ("Discuss the advantages and disadvantages of caching ...")

  3. Do problem 16.11 on page 702 ("Consider a distributed system with two sites ...")
Chapter #17 -- Distributed File Systems
  1. Do problem 17.1 on page 724 ("What are the benefits of a DFS ...")

  2. Do problem 17.7 on page 724 ("Compare and contrast the techniques ...") In your answer, be sure to thoroughly discuss the advantages and disadvantages of each technique.

  3. Do problem 17.11 on page 724 ("Describe some of the fundamental differences ...")