收藏 分销(赏)

操作系统概念中文版课后答案.pptx

上传人:a199****6536 文档编号:4169364 上传时间:2024-08-09 格式:PPTX 页数:34 大小:195.59KB
下载 相关 举报
操作系统概念中文版课后答案.pptx_第1页
第1页 / 共34页
操作系统概念中文版课后答案.pptx_第2页
第2页 / 共34页
操作系统概念中文版课后答案.pptx_第3页
第3页 / 共34页
操作系统概念中文版课后答案.pptx_第4页
第4页 / 共34页
操作系统概念中文版课后答案.pptx_第5页
第5页 / 共34页
点击查看更多>>
资源描述

1、Chapter 1n1.What are the three main purposes of an operating system?n环境提供者,为计算机用户提供一个环境,使得能够在计算机硬件上方便、高效的执行程序n资源分配者,为解决问题按需分配计算机的资源,资源分配需尽可能公平、高效n控制程序n监控用户程序的执行,防止出错和对计算机的不正当使用n管理I/O设备的运行和控制1-cont.n2.What is the main advantage of multiprogramming?n高效地使用CPU,通过重叠来自不同用户对CPU和I/O设备的需求n增加CPU的利用,设法让CPU执行有意

2、义的指令1-cont.n3.In a multiprogramming and time-sharing environment,several users share the system simultaneously.This situation can result in various security problems.na.What are two such problems?nb.Can we ensure the same degree of security in a time-shared machine as we have in a dedicated machine?

3、Explain your answer.n用户之间互相偷数据、代码n对系统资源使用的记账信息1-cont.n4.Define the essential properties of the following types of operating systems:na.Batchn相似需求的Job分批、成组的在计算机上执行,Job由操作员或自动Job程序装置装载;n可以通过采用 buffering,off-line operation,spooling,multiprogramming 等技术使CPU 和 I/O不停忙来提高性能n批处理适合于需要极少用户交互的Job。nb.Interactiv

4、en由许多短交易组成,下一次交易的结果可能不可预知n需要响应时间短1-cont.nc.Time sharingn使用CPU调度和多道程序提供对系统的经济交互式使用,CPU快速地在用户之间切换n一般从终端读取控制,输出立即打印到屏幕nd.Real timen在专门系统中使用,从传感器读取信息,必须在规定时间内作出响应以确保正确的执行1-cont.ne.Networkn在通用OS上添加n联网、通信功能n远程过程调用n文件共享nf.Distributedn具有联网、通信功能n提供远程过程调用n提供多处理机的统一调度调度n统一的存储管理n分布式文件系统1-cont.n5.Describe the di

5、fferences between symmetric and asymmetric multiprocessing.What are three advantages and one disadvantage of multiprocessor systems?nSymmetric multiprocessing中所有处理器同等对待,I/O可以在任意CPU上处理。nAsymmetric multiprocessing具有一个主CPU和多个从CPU,主CPU将任务分派到从CPU,I/O通常只能由主CPU处理。n多处理机系统的优点n比多个计算机系统可能更省钱(同样CPU个数)n执行程序更快n可靠

6、性更高n缺点:软硬件更复杂n6.thinking:what kind of features may exist in CC,IOT or CPS?Chapter 2n1.How does the distinction between monitor mode and user mode function as a rudimentary form of protection(security)system?n通过建立一组只能在monitor mode才能执行的特权指令集,OS能够确保总是能控制整个系统。2-cont.n2.What are the differences between a

7、 trap and an interrupt?What is the use of each function?nAn interrupt是硬件产生的系统内的流的改变nA trap是软件产生的“中断”。ninterrupt可以被I/O用来产生完成的信号,从而避免CPU对设备的轮询 nA trap可以用来调用OS的例程或者捕获算术错误 2-cont.n3.Which of the following instructions should be privileged?na.Set value of timer.nb.Read the clock.nc.Clear memory.nd.Turn o

8、ff interrupts.ne.Switch from user to monitor mode.na.Set value of timer.nc.Clear memory.nd.Turn off interrupts.ne.Switch from user to monitor mode.2-cont.n4.Protecting the operating system is crucial to ensuring that the computer system operates correctly.Provision of this protection is the reason b

9、ehind dual-mode operation,memory protection,and the timer.To allow maximum flexibility,however,we would also like to place minimal constraints on the user.The following is a list of operations that are normally protected.What is the minimal set of instructions that must be protected?na.Change to use

10、r mode.nb.Change to monitor mode.nc.Read from monitor memory.nd.Write into monitor memory.ne.Fetch an instruction from monitor memory.nf.Turn on timer interrupt.ng.Turn off timer interrupt.nb.Change to monitor mode.nc.Read from monitor memory.nd.Write into monitor memory.ng.Turn off timer interrupt.

11、Chapter 3n1.What are the five major activities of an operating system in regard to process management?n用户和系统进程地创建和删除n 进程的挂起和恢复n 提供进程同步的机制n 提供进程通信的机制n 提供死锁处理的机制3-cont.n2.What are the three major activities of an operating system in regard to memory management?n跟踪内存使用情况(哪一部分被使用、谁使用)n当内存空间可用的时候,确定将哪些进程

12、调入内存(job调度)n按需要分配和回收内存3-cont.n3.What are the three major activities of an operating system in regard to secondary-storage management?n剩余空间的管理n存储分配n磁盘调度3-cont.n4.What are the five major activities of an operating system in regard to file management?n文件创建和删除n目录创建和删除n目录和文件操作原语的支持n文件到二级存储的映射n将文件备份到非易失存储

13、设备3-cont.n5.What is the purpose of the command interpreter?Why is it usually separate from the kernel?n读取命令(从用户或者命令文件)并执行(转化成系统调用)n可能会经常改变3-cont.n6.What is the purpose of system calls?n让用户级进程可以请求操作系统所提供的服务3-cont.n7.What is the purpose of system programs?n为程序开发和运行提供了方便的环境n给用户提供基本的公共功能函数,为用户在不用自己写代码的情

14、况下解决公用问题n8.试着安装虚拟机试着安装虚拟机VMWARE,然后在这台虚拟机上安,然后在这台虚拟机上安装一个操作系统装一个操作系统n9.阅读阅读Linux源码,给出某一个源码,给出某一个system call的源码并的源码并分析,分析分析,分析init/main.c给出流程图给出流程图Chapter 4n1.Describe the differences among short-term,medium-term,and long-term scheduling.nShort-term,CPU调度nLong-term,job调度nMedium-term,分时系统中的中间调度级4-cont.

15、n2.Describe the actions a kernel takes to context switch between processes.n保存正在运行的进程的状态、恢复欲调度到CPU进程的状态4-cont.n3.What are the benefits and detriments of each of the following?Consider both the systems and the programmers levels.na.Symmetric and asymmetric communicationnb.Automatic and explicit buffe

16、ringnc.Send by copy and send by referencend.Fixed-sized and variable-sized messages4-cont.n4.The correct producerconsumer algorithm in the ppt,allows only n-1 buffers to be full at any one time.Modify the algorithm to allow all buffers to be utilized fully.4-cont.n5.Consider the interprocess-communi

17、cation scheme where mailboxes are used.na.Suppose a process P wants to wait for two messages,one from mailbox A and one from mailbox B.What sequence of send and receive should it execute?nb.What sequence of send and receive should P execute if P wants to wait for one message either from mailbox A or

18、 from mailbox B(or from both)?nc.A receive operation makes a process wait until the mailbox is nonempty.Either devise a scheme that allows a process to wait until a mailbox is empty,or explain why such a scheme cannot exist.nanreceive(A,m1)receive(B,m2)send(c,m3)nreceive(B,m1)receive(A,m2)send(c,m3)

19、nbnreceive(A,m1)receive(B,m2)send(c,m3)nreceive(B,m1)receive(A,m2)send(c,m3)nreceive(A,m1)send(c,m3)receive(B,m2)nreceive(B,m1)send(c,m3)receive(A,m2)4-cont.n6.阅读分析阅读分析Linux终止进程的源码终止进程的源码n7.编程,实现一个简单网络聊天程序,用到编程,实现一个简单网络聊天程序,用到socket和和fork()(接受和发送在(接受和发送在fork出的进程中)出的进程中)Chapter 5n1.Provide two progra

20、mming examples of multithreading giving improved performance over a single-threaded solution.n可以并发的多任务nWeb浏览器,数据可并行处理n2.Provide two programming examples of multithreading that would not improve performance over a single-threaded solution.n不可以并发的单任务n用多个线程读一个文件n后续的结果必须依赖于前面的5 cont.n3.What are two diff

21、erences between user-level threads and kernel-level threads?Under what circumstances is one type better than the other?n内核可知与不可知n调度者不同n与进程的关系n运行效率、内核复杂度、用户可控程度n4.What resources are used when a thread is created?How do they differ from those used when a process is created?nTCB,寄存器组,栈,调度信息nPCB,所有与进程执行

22、和调度相关的资源与信息,内存,打开的文件,环境变量5-cont.n5.Write a multithreaded Pthread or Java program that outputs prime numbers.This program should work as follows:The user will run the program and will enter a number on the command line.The program will then create a separate thread that outputs all the prime numbers

23、less than or equal to the number that the user entered.n6.编程,实现一个简单网络聊天程序,用到编程,实现一个简单网络聊天程序,用到socket和和pthread(接受和发送在(接受和发送在pthread创建的线程中)创建的线程中)Chapter 6n1.A CPU scheduling algorithm determines an order for the execution of its scheduled processes.Given n processes to be scheduled on one processor,h

24、ow many possible different schedules are there?Give a formula in terms of n.nN个进程的排列问题nPnn=n!n2.Define the difference between preemptive and nonpreemptive scheduling.State why strict nonpreemptive scheduling is unlikely to be used in a computer center.n对CPU控制权的主动还是被动放弃n不可能采用纯非剥夺机制:考虑到多道程序、分时共享,公平和轻重

25、缓急6-cont.n3.Consider the following set of processes,with the length of the CPU-burst time given in milliseconds:nThe processes are assumed to have arrived in the order P1,P2,P3,P4,P5,all at time 0.na.Draw four Gantt charts illustrating the execution of these processes using FCFS,SJF,a nonpreemptive

26、priority(a smaller priority number implies a higher priority),and RR(quantum=1)scheduling.nb.What is the turnaround time of each process for each of the scheduling algorithms in part a?nc.What is the waiting time of each process for each of the scheduling algorithms in part a?nd.Which of the schedul

27、es in part a results in the minimal average waiting time(over all processes)?6-cont.n6.3 na.n b.n c.nd.SJF6-cont.n4.Suppose that the following processes arrive for execution at the times indicated.Each process will run the listed amount of time.In answering the questions,use nonpreemptive scheduling

28、 and base all decisions on the information you have at the time the decision must be made.na.What is the average turnaround time for these processes with the FCFS scheduling algorithm?(8-0)+(12-0.4)+(13-1.0)/3=10.53 nb.What is the average turnaround time for these processes with the SJF scheduling a

29、lgorithm?(8-0)+(13-0.4)+(9-1.0)/3=9.53nc.The SJF algorithm is supposed to improve performance,but notice that we chose to run process P1 at time 0 because we did not know that two shorter processes would arrive soon.Compute what the average turnaround time will be if the CPU is left idle for the fir

30、st 1 unit and then SJF scheduling is used.Remember that processes P1 and P2 are waiting during this idle time,so their waiting time may increase.This algorithm could be known as future-knowledge scheduling.(14-0)+(6-0.4)+(2-1.0)/3=6.876-cont.n5.Consider the following preemptive priority-scheduling a

31、lgorithm based on dynamically changing priorities.Larger priority numbers imply higher priority.When a process is waiting for the CPU(in the ready queue but not running),its priority changes at a rate A;when it is running,its priority changes at a rate B.All processes are given a priority of 0 when

32、they enter the ready queue.The parameters A and B can be set to give many different scheduling algorithms.na.What is the algorithm that results from BA0?nb.What is the algorithm that results from AB0?nFCFSnLIFO6-cont.n6.Many CPU scheduling algorithms are parameterized.For example,the RR algorithm re

33、quires a parameter to indicate the time slice.Multilevel feedback queues require parameters to define the number of queues,the scheduling algorithms for each queue,the criteria used to move processes between queues,and so on.These algorithms are thus really sets of algorithms(for example,the set of

34、RR algorithms for all time slices,and so on).One set of algorithms may include another(for example,the FCFS algorithm is the RR algorithm with an infinite time quantum).What(if any)relation holds between the following pairs of sets of algorithms?na.Priority and SJF(最短job优先级最高)nb.Multilevel feedback

35、queues and FCFS(MLFQ的最低级是FCFS)nc.Priority and FCFS(FCFS给存在时间最长的优先级最高)nd.RR and SJF(none)6-cont.n7.Suppose that a scheduling algorithm(at the level of short-term CPU scheduling)favors those processes that have used the least processor time in the recent past.Why will this algorithm favor I/O-bound programs and yet not permanently starve CPU-bound programs?n8.阅读分析阅读分析Linux sched.c

展开阅读全文
部分上传会员的收益排行 01、路***(¥15400+),02、曲****(¥15300+),
03、wei****016(¥13200+),04、大***流(¥12600+),
05、Fis****915(¥4200+),06、h****i(¥4100+),
07、Q**(¥3400+),08、自******点(¥2400+),
09、h*****x(¥1400+),10、c****e(¥1100+),
11、be*****ha(¥800+),12、13********8(¥800+)。
相似文档                                   自信AI助手自信AI助手
搜索标签

当前位置:首页 > 通信科技 > 操作系统相关

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2024 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服