5 system software Flashcards

(16 cards)

1
Q

Why a Computer System Requires an Operating System

A

An Operating System (OS) is essential because it controls and coordinates the hardware and software of the computer.

It acts as an interface between the user and the hardware.

It manages resources so programs can run effectively.

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

operating system tasks

A

memory management, security management, file management , hardware management, process management

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

memory optimization

A
  • determine how computer memory is allocated and deallocated
  • determines where they are stored in memory.
  • swap data to and from the HDD OR SSD
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

memory organization

A

-single (contiguous) allocation, where all of the memory is made available to a single
application.
- partitioned allocation, where the memory is split up into contiguous partitions (or blocks)
- Handles virtual memory and paging if necessary.

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

memory protection

A

ensures that two competing applications cannot use the same memory locations at the same time.

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

security management

A

Protects against unauthorized access using passwords, permissions.

Supports authentication features like biometrics or tokens.

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

process management

A

It manages resources and allows data to be shared, so that all processes can work together smoothly and stay in sync.

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

hardware management

A

Controls input and output devices via drivers.

Manages printing, disk access, etc., ensuring smooth device interaction.

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

file management

A
  • storage space is divided into file allocation units
  • space is allocated to particular files
  • implements access rights
  • specified tasks that can be performed on a file
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Typical Utility Software Provided with an Operating System

A

Disk Formatter: sets up a disk so it’s ready to store files

Virus Checker: anti virus software should be up to date checks for virus, of virus found it’s quarantined then user can decide wether to delete or keep

Defragmentation Software: moves parts of files so that each file is contiguous in memory so files can be loaded faster

Disk Repair Software: Detects and fixes file system errors.

File Compression: Reduces file sizes for storage or transmission.

Back-up Software: Automatically saves copies of files at regular intervals in case of loss, data can be retrieved

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

program libraries

A
  • Stores pre-written functions and routines
  • freely accessed by other software developers for use in their own programs.
  • can perform complex calculations
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

assembler

A

Translates assembly language to machine code.

Used for low-level programming tasks.

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

compiler

A

Translates a complete high-level language program into machine code before execution.

Faster execution once compiled.

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

interpreter

A

Translates and executes each line of code one at a time.

Slower, but allows for easier debugging.

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

features of an integrated development environment (IDE)

A

For Coding

-Context-sensitive prompts: suggest keywords, functions, or variable names based on what is being typed.

For Initial Error Detection

-Dynamic syntax checks: identify mistakes while typing code.

For Presentation

-Prettyprint: identify key terms

-Expand/Collapse Code Blocks: allows easy navigation and focus.

For Debugging

-Single Stepping: runs code one line at a time.

-Breakpoints: pause execution at specific lines.

-Variable Watch: displays variable values at runtime.

-Expression Evaluation: calculates expressions at runtime.

-Report Window: shows how variables change

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

memory management

A

controls movement of data between RAM and processor
by assigning RAM into blocks and reclaiming unused blocks of RAM