Unit 5.1 Operating Systems

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/23

flashcard set

Earn XP

Description and Tags

Flashback cards for Unit 5.1 Operating Systems

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

24 Terms

1
New cards

Operating System Software

Manages computers hardware & software and allows communication from user to computer with a user interface.

2
New cards

Utility Software

Performs general housekeeping tasks to monitor, manage, and maintain a computer.

3
New cards

Software Library

Sections of code previously written by other authors containing useful routines for common tasks.

4
New cards

Memory Management

Task performed by the OS involving moving data between RAM, secondary storage, and virtual memory.

5
New cards

File Management

Task performed by the OS involving searching, copying, moving, renaming files and folders, and storing in secondary storage.

6
New cards

Hardware Management

Task performed by the OS involving communicating with peripheral devices, installing drivers to allow communication with devices.

7
New cards

Process Management

Task performed by the OS involving creating, terminating processes, allocating tasks to the CPU, and handling interrupts.

8
New cards

Security Management

Task performed by the OS involving controlling system access and resource access on the computer.

9
New cards

Disk Formatter

Utility software provided by the OS that wipes all contents of a storage device and prepares it for new data.

10
New cards

Virus Checker

Utility software provided by the OS that detects, prevents, and removes malware and viruses.

11
New cards

Defragmentation

Utility software provided by the OS that puts separate files back together and stores in consecutive storage locations

12
New cards

Disk Repair

Utility software provided by the OS that attempts to correct corrupted files and restore them to original working state.

13
New cards

File Compression

Utility software provided by the OS that uses algorithms to reduce required storage space in files.

14
New cards

Back-Up

Utility Software provided by the OS that keeps copy of data on another storage device so data can be recovered in case its stolen/lost/damaged.

15
New cards

Dynamic Link Library (DLL)

Stores collection of self contained/library of programs already compiled of common tasks.

16
New cards

Dynamic Link Library (DLL) Pro 1

Only need to be loaded into memory when required so they dont need to be stored throughout program execution.

17
New cards

Dynamic Link Library (DLL) Pro 2

Made available to several programs simultaneously so no need for duplicate code

18
New cards

Dynamic Link Library (DLL) Pro 3

If file is updated, all programs linked to that file can run the update.

19
New cards

Software Library Pro 1

Saves time as less code needs to be written

20
New cards

Software Library Pro 2

Less specialist knowledge needed as others expertise can be used.

21
New cards

Software Library Pro 3

Code has already been tested so programmers don’t need to test it

22
New cards

Software Library Con 1

Can increase program size as many contain unused lines of code

23
New cards

Software Library Con 2

Efficiency is unknown as the programmer may not know how the code works as it will be hidden (black-boxed)

24
New cards

Software Library Con 3

Code may be unchangeable so it becomes difficult to tailor it for programmers needs