System Software Questions Flashcards

1
Q

Explain how the processes are affected when the following events take place.

(i) The running process needs to read a file from a disk

A

-Running process is halted
-Process moves to blocked state

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

State the conditions that are necessary for a process to move from the ready to the running state.

A

-Current process no longer running // processor is available
-Process was at the head of the ready queue // process has highest priority

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

State the conditions that are necessary for a process to move from the blocked to the ready state.

A

The only Required resource becomes available // event is complete

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Explain how the processes are affected when the following events take place.
(ii) The running process uses up its time slice

A

Running process is halted // another process has use of the processor
-Process moves to ready state
-Until next time slice allocated

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Give three reasons why process scheduling is needed.

A

-to allow multiprogramming
-to give each process a fair share of the CPU time
-to keep the CPU busy all the time
-to allow highest priority jobs to be executed first

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Identify and describe the Ready state.

A

-The process is not being executed
-The process is in the queue waiting for the processor’s attention / time slice

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Identify and describe the Running state.

A

The process is being executed by the processor
The process is currently using its allocated processor time / time slice

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Identify and describe the Blocked state.

A

-The process is waiting for an event
- SO it cannot be executed at the moment
…@.g. input/output

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Describe how an operating system can maximise the use of resources.
“Primary Memory”

A

-Moving frequently accessed instructions to cache for faster recall
-Making use of virtual memory with paging or segmentation to swap memory to and from a disk
-Removing unused items/tasks from RAM by marking a partition as available as soon as the process using it has terminated

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Explain what is meant by the following terms.

-Page
-Page Frame
-Page Table

A

Page:
Virtual Memory is divided into blocks of a fixed size

Page frame:
-the main memory is divided into page frames of the same size as
page

Page table:
the Page (Map) table shows the mapping of pages to page frames

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Explain why an operating system needs to use scheduling algorithms.

A

-To allow multiprogramming.
-To give each process a fair share of CPU time.
-To ensure higher priority tasks are executed first.
-To keep CPU busy at all times.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

State what is meant by an interrupt.

A

A signal from a software source or hardware device seeking the attention of the processer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Explain how paging is used to manage virtual memory.

A

-RAM is divided into blocks of fixed size called pages.
-Virtual Memory is divided into blocks of fixed sizes called frames
-Page table is set-up to Map physical address to logical address.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Describe what is meant by disk Thrashing

A

Occurs when CPU spends more time on swapping data between Disk and Ram instead of performing any useful processing
Pages are required back in RAM as soon as they are moved to disk

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Describe what is meant my Virtual Memory

A

Secondary storage is used to extend the RAM
So that cpu can access more memory space than available ram.
Data is swaped between Ram and Disk.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Describe how an operating system can maximise the use of resources.
“Disk”

A

Disk Caching: A disc cache holds data that is frequently transferend to and from disk
Compression Utility: Reducing the size of a file stored on disk
Defragmentation Utility

17
Q

What is the difference between a Program and a Process?

A

Program is written code (static)
Process is executing code (dynamic)

18
Q

Explain why a process cannot be moved from blocked state to running state [ 3 ]

A

In blocked state process waits for I/O opperation, when its done, process is put in ready state and moved to ready queue,
The OS decides which process to allocate proccessor from ready queue.

19
Q

Explain the role of the high-level scheduler in a multiprogramming operating system.

A

Decides which process are to be loaded from backing store (disk) to into memory.

20
Q

Explain why a process cannot move directly from the ready state to the blocked state. [ 3 ]

A

To be in blocked state process must initiate some I/O opperation
To initiate oppration, the process must b e executing.
So the process must be in running state.

21
Q

Explain how the contents of the keyword and symbol tables are used to translate the source code program.

A

Keywords are looked up in the keyword table
Identifiers are looked up in the symbol table
Keywords are represented by tokens.
Identifiers are converted to addresses.

22
Q

State one additional task completed at the lexical analysis stage that does not involve the use of a keyword or a symbol table.

A

White space is removed
Comments are removed

23
Q

The final stage of compilation can be code optimisation.
Explain why code is optimised.

A

Code will have fewer instructions.
Code reorganized to make it more efficient.
Program will require less space.
Program will complete task in a shorter time.

24
Q

Explain how RPN is used by an Interpreter to evaluate expressions.

A

Expressions are always evaluated from left to right
If element is a number, push it onto the stack
If element is an operator, then POP the first two numbers on stack, perform the operation and push the result

25
Q

Explain the advantages of using RPN for the evaluation of expressions.

A

No need for rules of precedence
No need for Brackets.
The evaluation is always left to right

26
Q

Identify with reasons , a data structure that could be
used to evaluate an expression in RPN ?

A

Structure: Stack
Reason: Operands are popped from the stack in the Reverse order to how they were pushed.

27
Q

Explain how an in interpreter executes a program
without producng a complete translated version of it.

A

The interpreter examines the source code, one statement at a time.
It checks each statement for errors.
Executes the statement if no error is found.
If an error is found, this is reported and the interpreter Halts.