1.2.1 Systems Software Flashcards

1
Q

What are the two main types of software?

A

Systems Software and Applications software.

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

What different parts of systems software are there?

A

Operating systems.
Device Drivers.
Utilities.

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

What are the key functions of an OS?

A
  1. Providing a user interface (UI).
  2. Processor scheduling.
  3. Handling interrupts.
  4. Memory management.
  5. File management.
  6. Device management.
  7. Providing security.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the main types of UIs?

A
  1. CLI (command line interface).
  2. GUI (graphical user interface).
  3. Menu based.
  4. Natural language.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the kernel?

A

The Kernel is the very core of the OS with complete control over everything in the system. It is the first part of the OS to load after the bootloader.

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

What are the different categories of Operating Systems?

A

Multitasking, Multi-user, Embedded, Real-time and Distributed.

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

What is a multitasking operating system?

A

A type of system software that allows a computer to run multiple programs or tasks at the same time.

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

What is a multi-user OS?

A

Allows multiple users to use a system and its resources simultaneously.

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

What is a distributed OS?

A

Allows multiple computers to work together on a single task via a network.

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

What is an embedded OS?

A

One designed to run on devices that have a single or limited range of functions rather than general-purpose computers.

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

What is a real-time OS? (RTOS)

A

One designed to carry out actions within a guaranteed time even when left running for long periods.

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

What are the 2 methods of splitting up data when allocating memory?

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

What is Segmentation?

A

When memory is split into variable-sized blocks called segments.

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

What is Paging?

A

When memory is divided into fixed-sized blocks called pages.

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

What are the different types of Scheduling?

A
  1. First come first served.
  2. Dound robin.
  3. Shortest job first.
  4. Shortest time remaining.
  5. Multi-level Feedback Queues.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is Polling?

A

When the CPU keeps checking each piece of software and hardware in turn to see if it needs attention.

17
Q

What are interrupts?

A

An interrupt is a signal from a piece of software or hardware that tells the CPU that it need immediate attention. They are handled by ISRs (internet service routines).

18
Q

Describe the process of an interrupt happening.

A
  1. The contents of the PC and registers are copied to the stack.
  2. The origin of the interrupt is identified so that the appropriate ISR is called.
  3. The relevant ISR can then be loaded by changing the PC to the address of where the ISR starts in memory.
  4. The ISR completes its execution.
  5. The previous values of the PC and other registers can be restores to the CPU and the previous program is resumed.
19
Q

What happens when there are too many interrupts?

A

Stack overflow, possibly crashing the computer.