11 Pages

final_2005s

Course: ENG 308, Fall 2009
School: Iowa State
Rating:
 
 
 
 
 

Word Count: 1068

Document Preview

308 Operating CprE Systems: Principles and Practice Exam 2 May 3, 2005, 7.30-9.30am Name: Section: Note The maximum score on this exam is 100 points. The maximum time allowed is 2 hours. This is a closed book exam. Problem 1 1 pt Are le names in UNIX case sensitive? 2 pts Which UNIX system call creates a new address space? 3 pts What is the problem if physical (not virtual) memory addresses are generated at...

Register Now

Unformatted Document Excerpt

Coursehero >> Iowa >> Iowa State >> ENG 308

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
308 Operating CprE Systems: Principles and Practice Exam 2 May 3, 2005, 7.30-9.30am Name: Section: Note The maximum score on this exam is 100 points. The maximum time allowed is 2 hours. This is a closed book exam. Problem 1 1 pt Are le names in UNIX case sensitive? 2 pts Which UNIX system call creates a new address space? 3 pts What is the problem if physical (not virtual) memory addresses are generated at compile time? 3 pts In a virtual memory system with a 32 bit virtual address space and 128MB physical memory: (a) How large is the virtual address space? (b) What is the maximum amount of memory you can expect your programs to consume without the system thrashing? CprE 308 Exam 2 May 3, 2005, 7.30-9.30am 3 pts Consider a le system that uses a buer cache. If power outages are frequent, then which strategy would you recommend for handling writes to les? Explain. 4 pts Suppose you want to share a le with three friends and give them read and write access to the le (and access to no one else). Explain how you would accomplish this on a UNIX le system. 3 pts List the steps taken by the operating system in response to a page fault. 4 pts One way to keep track of the disk blocks associated with a le is through contiguous allocation, where each le is stored as a contiguous run of disk blocks. Name one advantage and one disadvantage of this scheme. 2 CprE 308 Exam 2 May 3, 2005, 7.30-9.30am 4 pts Is it feasible to use a 1-level page table for a 40-bit address space? Explain. Assume that each page table entry takes 4 bytes and the page size is 4KB. 5 pts Name ve system calls provided by the UNIX le system. 3 pts What is the advantage of programming in a language that uses garbage collection? 3 CprE 308 Exam 2 May 3, 2005, 7.30-9.30am Problem 2 5 pts Consider a 20 GB disk organized using a FAT le system. Assume that the block size is 10KB, and that each entry of the FAT takes 4 bytes. How large is the FAT? 5 pts Consider the UNIX i-node organization whose disk map contains 13 pointers to disk blocks: 10 direct, 1 indirect, 1 double indirect and 1 triple indirect. Assume that each disk block is 4KB (4096 bytes), and that a pointer to a disk block takes 4 bytes. How many disk operations are required to read the 100,000th byte in a le? Explain your answer. Assume that the i-node of the le is in memory. 4 CprE 308 Exam 2 May 3, 2005, 7.30-9.30am 4 pts In a UNIX le system, list all disk accesses needed for examining the contents of the le /usr/snt/../snt/data.txt. Assume that at the beginning, the root inode and the root directory are already in memory, but no other directories or inodes are in memory. Also assume that the le data.txt ts in one disk block. Explain your answer. 5 CprE 308 Exam 2 May 3, 2005, 7.30-9.30am Problem 3 10 pts Page Replacement Algorithms Consider the following page-reference string from a process 1, 2, 1, 2, 3, 1, 2, 3, 4, 1, 2, 3, 4, 5 For each page reference, specify whether a page fault occurs or not with the LRU algorithm and the Optimal algorithm. Assume that the system has three page frames. Also assume that all the frames are initially empty, so that the rst reference to a page will always cost a fault. Under every page reference, mark whether there was a page-fault or not, and write the contents of the frames page at the end of the reference (i.e. after the instruction has been executed). (a) LRU (Least Recently Used) Page Accessed Mark if page fault occurs Contents of Page frame 1 Contents of Page frame 2 Contents of Page frame 3 Initial Nil Nil Nil 1 2 1 2 3 1 2 3 4 1 2 3 4 5 (b) For the optimal algorithm (which has knowledge of future requests), show the page fault sequence as in the previous question. Page Accessed Mark if page fault occurs Contents of Page frame 1 Contents of Page frame 2 Contents of Page frame 3 4 pts Implementation Which of the above algorithms (LRU and Optimal) can be implemented exactly in a real operating system? Explain your answer. Initial Nil Nil Nil 1 2 1 2 3 1 2 3 4 1 2 3 4 5 6 CprE 308 Exam 2 May 3, 2005, 7.30-9.30am Problem 4 6 points Consider a virtual memory system which uses single level page tables for the address translation, and which has the following observed parameters. TLB hit ratio = 90% Physical memory latency = 100 nanoseconds Penalty of a page fault = 10 milliseconds Suppose page faults occur every X instructions. What is the minimum value of X so that the average memory latency is less than 120 nanoseconds? Assume that the lookup time in the TLB is negligible, and that the whole page table can be stored in physical memory. Show your intermediate steps so that we can give you partial credit, if needed. 7 CprE 308 Exam 2 May 3, 2005, 7.30-9.30am 10 points Consider a demand-paging system with the following parameters. CPU Utilization = 20% Disk Utilization due to Paging = 99% Other I/O devices = 5% For each of the following, briey explain whether it is likely to improve the CPU utilization. (a) Install a faster CPU (b) Install a bigger disk for paging (c) Decrease the degree of multiprogramming (d) Install more main memory (e) Install a faster disk for paging 8 CprE 308 Exam 2 May 3, 2005, 7.30-9.30am Problem 5 3 points A real-time system has two periodic events with periods of 20, 40 m...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Iowa State - ENG - 308
Topics What is Multiprogramming? How is multiprogramming implemented? Process context switch1Processes and Multiprogramming Multiprogramming (or multitasking) Many processes executing in parallel Imagine not having it Type in command Wai
Iowa State - ENG - 308
Threads Thread is an abstraction of a processor Whats new: Can have multiple threads within the same process1The Need for Threads Think Performance High performance web server Web Browser With only one thread, not able to (easily) overlap
Iowa State - ENG - 308
CprE 308 Laboratory 6: Process Scheduling AlgorithmsDepartment of Electrical and Computer Engineering Iowa State University Spring 2006Include the following in your lab report: Your full name and lab section in the upper right corner of the first
Iowa State - ENG - 308
CprE 308 Lab 5: Inter Process Communication in Unix Department of Electrical and Computer Engineering Iowa State University Spring 2006 SubmissionInclude the following in your lab report: Your full name and lab section in the upper right corner of
Iowa State - ENG - 308
Structure of UNIXShellUser Input Process Kernel (OS) File System Memory Mgmt. Input/Output1Processes Process = program in execution Processes can be suspended, restarted, killed (!) Process scheduler decides which process to run next among al
Iowa State - ENG - 308
Process SchedulingBasic Question: Which process goes next? Personal Computer Few processes, interactive, low response time Batch Systems (Compute Servers) Many processes, not interactive, throughput is important Real Time Systems Guaranteed
Iowa State - ENG - 308
CprE 308Operating Systems: Principles and PracticeExam 1March 7, 2004Name: Section:NoteThe maximum score on this exam is 50 points. The maximum time allowed is 50 minutes. This is a closed book exam.Problem 11. 2 points Name your favorite
Iowa State - HW - 308
Cpr E 308, Spring 2006: Homework 1Cpr E 308, Spring 2006: Homework 1Do not hand in this homework. 1. Chapter 1, Problem 11, page 68. 2. Chapter 1, Problem 13, page 68. 3. The stack segment is where local variables are allocated. On most architectu
Iowa State - PROJECT - 308
Cpr E 308:Operating Systems, Principles and Practice, Spring 2006 Project 3 (due April 24) 1 GoalThe goal of this project is to gain experience in using system calls and library functions relevant to the le system by designing and implementing a le
Iowa State - ENG - 308
CprE 308 Lab 2: Unix ProcessesDepartment of Electrical and Computer Engineering Iowa State University Spring 2006 SubmissionInclude the following in your lab report: Your Name on the first page A cohesive summary of what you learned through the v
Iowa State - ENG - 308
Single Threaded ProcessCODE REGISTERS DATA FILES STACKCpr E 308 Spring 2006Multi-Threaded ProcessCODEREGISTERSDATASTACKFILESSTACKREGISTERSCpr E 308 Spring 2006What is a Thread? Registers, Stack Any threads library should support
Iowa State - ENG - 308
Recap for MidtermIntroductory Material What belongs in the OS, what doesnt? Basic Understanding of Hardware, Memory Hierarchy Interrupts: What happens when an Interrupt occurs?Cpr E 308 Spring 2006Process Whats a process? Unix Process Creati
Iowa State - ENG - 528
ABCDG F E J I KHLMNFigure 1: An example document graphCprE 528: Pagerank Assignmentdue Nov 6th. For this assignment, you will need to study the paper "The PageRank Citation Ranking: Bringing Order to the Web", linked off the cour
Iowa State - ENG - 528
CprE 528x, Fall 2008 Probabilistic Methods in Computer EngineeringHomework 2Due: 23 Sept 2008, in class PolicyThis is a collaborative homework. You are allowed to discuss the problems with other students. But, the write up should be written by yo
Iowa State - ENG - 528
CprE 528x, Fall 2008 Probabilistic Methods in Computer EngineeringHomework 3Due: 14 Oct 2008, in class PolicyThis is a collaborative homework. You are allowed to discuss the problems with other students. But, the write up should be written by you
Iowa State - CHEM - 177
Prof. Joe Burnett Summer 2007 This exam consists of 22 questions on 9 pages.CHEM 177 Hour Exam II June 15, 2007Name_ Recitation Instructor Circle one: Cherry GloriaGRADING PAGES Page 2 Page 3 Page 4 Page 5 Page 6 Page 7 Page 8 TOTAL POINTS 22 p
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - ACCT - 383
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
Accounting 384 - Midterm Fall 2007 (150 points) Name_ Section _ MULTIPLE CHOICE (15 questions @ 4 points each = 60 total points) Identify the choice that best completes the statement or answers the question. 1. Which of the following statements is tr
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl
Iowa State - BUS - 384
<html> <head> <linkrel="stylesheet"type="text/css" href="http:/www.bus.iastate.edu/Include/style/style.css"/> <metaname="GENERATOR"content="MicrosoftFrontPage12.0"> <metaname="ProgId"content="FrontPage.Editor.Document"> <title>IowaStateUniversityColl