CPSC 457 Operating Systems Midterm Exam Solution
CPSC 457 Operating Systems Midterm Exam Solution
OPERATING SYSTEMS
MIDTERM EXAM SOLUTION
Department of Computer Science
University of Calgary
Professor: Carey Williamson
March 9, 2010
This is a CLOSED BOOK exam. Textbooks, notes, laptops, calculators, personal digital
assistants, cell phones, and Internet access are NOT allowed.
It is a 75 minute exam, with a total of 60 marks. There are 11 questions, and 9 pages
(including this cover page). Please read each question carefully, and write your answers
legibly in the space provided. You may do the questions in any order you wish, but please
USE YOUR TIME WISELY.
When you are finished, please hand in your exam paper and sign out. Good luck!
Student Name:
Student ID:
Score: / 60 = %
1
Multiple Choice
Choose the best answer for each of the following 6 questions, for a total of 6 marks.
1 3. In message-passing IPC on a Linux system, the maximum message size permitted is:
(a) 1 byte
(b) 4 bytes
(c) 32 bytes
(d) 64 bytes
2
1 4. When a process is created using the classical fork() system call, which of the following
is not inherited by the child process?
(b) process ID
(c) user ID
(a) many-to-one
(b) one-to-one
(c) one-to-many
(d) many-to-many
3
Operating System Principles
10 7. In class, we have illustrated operating system principles using examples from former
and current operating systems, including Multics, Unix, Linux, Windows, and Mac OS.
(b) (5 marks) List and briefly describe any 5 of the typical services provided by an OS.
user interface: command-line, batch, or GUI
usable system: environment for program development and execution
file system: a place to store and manipulate data objects
communication: a way for processes to communicate and interact
accounting: keeping track of system resource usage
error detection: detecting, reporting, recovering from system problems
security: protection of system from malicious users or actions
(c) (3 marks) Most operating system functionality can be provided using a variety of
mechanisms, including system calls, built-in commands, and user-level programming
support. Give 3 examples, from either Linux, MacOS, or Windows, of useful operating
system functionality, indicating clearly the mechanism by which the service is provided.
file manipulation: built-in commands and utilities in Unix,
as well as I/O redirection in the shell
GUI: graphical user interface (e.g., Windows) for managing
terminal windows, desktop icons, etc, often as an application program
thread management: application-level and/or system-level support for
the creation and management of threads of execution
timers: system-calls and/or built-in commands in Unix
4
Operating System Concepts and Definitions
12 8. For each of the following pairs of terms, define each term, making sure to clarify the
key difference(s) between the two terms.
(a) (2 marks) “process” and “processor”
process: a ‘‘program in execution’’; an active software entity,
which has states and attributes, and can hold resources (mem, CPU).
processor: a hardware resource (CPU) for executing programs.
A process is executed on a processor.
5
Processes and Threads
12 9. Most modern operating systems provide support for both processes and threads.
(c) (3 marks) List any 6 of the attributes that an operating system maintains to keep track
of information about a process.
process ID
owner (user ID)
parent
priority
memory resource allocation
open files
and many more...
(d) (3 marks) List the 3 most important attributes that an operating system maintains to
keep track of information about a thread.
program counter (PC)
registers
stack
thread ID was also a possible answer, for partial marks
(e) (2 marks) List 2 reasons why the scheduling of processes and threads on a multi-
processor system is more complicated than scheduling them on a uni-processor system.
Concurrently executing processes may require access to shared data.
More than one processor is available, so load-balancing is an issue.
Difficult to debug of non-deterministic execution sequences. Cache affinity
needs to be considered in CPU scheduling decision.
Modern CPU architectures have many subtle features, such as multi-core,
that are hard to exploit properly in user-level programming.
6
CPU Scheduling
10 10. Consider the following set of jobs to be scheduled for execution on a single CPU system.
Job Arrival Time Size (msec) Priority
J1 0 10 2 (Silver)
J2 2 8 1 (Gold)
J3 3 3 3 (Bronze)
J4 10 4 2 (Silver)
J5 12 1 3 (Bronze)
J6 15 4 1 (Gold)
(a) (2 marks) Draw a Gantt chart showing FCFS scheduling for these jobs.
J1 J2 J3 J4 J5 J6
0 10 18 21 25 26 30
J1 J3 J5 J4 J6 J2
0 10 13 14 18 22 30
J1 J2 J6 J4 J3 J5
0 10 18 22 26 29 30
J1 J2 J1 J6 J1 J4 J3 J5
0 2 10 15 19 22 26 29 30
(e) (2 marks) Which of the foregoing scheduling policies provides the lowest waiting time
for this set of jobs? What is the waiting time with this policy? (Show your work)
SJF.
J1: 0 J2: 20 J3: 7 J4: 4 J5: 1 J6: 3
Average is 35/6 time units.
7
Operating System Utilities
10 11. The output on the next page is from a lightly-used Linux system on the recent weekend.
Use the output and your knowledge of Linux systems to answer the following questions:
(a) (1 mark) On what date (approximately) was this system most recently rebooted?
September 9, 2009
(b) (1 mark) How many distinct users are logged in on this sytem?
2 (carey and jess, though carey is logged in twice)
(c) (1 mark) Approximately how many processes are currently present on this system?
179
(d) (1 mark) How much physical memory (RAM) does this particular Linux system have?
3.2 GB
(f) (1 mark) Which process (PID or name) has consumed the most CPU time so far?
29105 (linux)
(g) (1 mark) Which process (PID or name) is currently consuming the most memory?
3740 (fractal)
(h) (1 mark) Which process (PID or name) is the oldest process on this system?
1 (init)
(i) (1 mark) Which process (PID or name) has created the most child processes?
1179 (csh)
8
[carey@csl]$ w
09:11:09 up 184 days, 17:43, 3 users, load average: 0.52, 0.37, 0.35
USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT
carey pts/5 csg 06:32 0.00s 0.47s 0.00s w
carey pts/6 ict736a Thu09 19:41m 0.04s 0.04s -csh
jess pts/8 ict624 08:16 31:25m 0.02s 0.06s -bash
[carey@csl]$ ps
PID TTY TIME CMD
1179 pts/5 00:00:00 csh
1407 pts/5 00:00:00 emacs-x
3721 pts/5 00:00:00 sleep
3740 pts/5 00:01:00 ./fractal
3748 pts/5 00:00:00 ps
[carey@csl]$ ps -l
F S UID PID PPID C PRI NI ADDR SZ WCHAN TTY TIME CMD
0 S 214 1179 1178 0 75 0 - 1434 rt_sig pts/5 00:00:00 csh
0 T 214 1407 1179 0 75 0 - 3133 finish pts/5 00:00:00 emacs-x
0 S 214 3721 1179 0 77 0 - 985 - pts/5 00:00:00 sleep
0 R 214 3753 1179 0 75 0 - 1102 - pts/5 00:00:00 ps
0 R 214 3740 1179 0 75 0 - 4270 - pts/5 00:01:00 ./fractal
[carey@csl]$ top
top - 09:11:25 up 184 days, 17:58, 3 users, load average: 0.26, 0.34, 0.34
Tasks: 179 total, 2 running, 141 sleeping, 36 stopped, 0 zombie
Cpu(s): 2.5%us, 5.6%sy, 0.0%ni, 91.9%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%
Mem: 3369524k total, 2915008k used, 454516k free, 356296k buffers
Swap: 2040244k total, 54544k used, 1985700k free, 2361776k cached