Operating Systems Flashcards

1
Q

What are the 3 purposes of Operating Systems?

A

1) Manage System Resources
2) Create a Common Platform for software applications
3) Access Input/output devices on behalf of software applications

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

What are the 6 main tasks of OS’s?

A

1) Process Management
2) Memory Management
3) File System Management
4) Device Management
5) Application Interface
6) User Interface

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

What is Prfocess Management?

A

OS gives commands to CPU

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

What is Memory Management?

A

OS puts data inside RAM

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

What is File System Management?

A

How data is stored on our long term devices

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

What is Device Management?

A

Managing Input/output devices

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

What is Application Interface?

A

Common look and feel of software from outside vendors (mostly applicable to programmers)

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

What is User Interface?

A

How we (users) interact with Operating System

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

What are the two ways to interface with OS’s ?

A

1) GUI “Gooey” - Graphical User Interface, mouse driven interaction
2) Command Line - Strictly keyboard driven interaction

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

What are the 4 families of OS’s?

A

1) Real Time OS
2) Single-User, Single-Task
3) Single-User, Multi-Task
4) Multi-User, Multi-task

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

What is Real Time OS?

A

Designed for one task and do it over and over again; custom written for specific reason
(mostly found in factories, utilities, etc)

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

What is Single-User, Single-Task?

A

Allow for only ONE logged on user at a time, user can ONLY do one thing at a time
(dos, no background programs running)

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

What is Single-User, Multi-Task?

A

Only one user at a time, but can run multiple programs at once
(most Commonly used by us)

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

What is Multi-User, Multi-Task?

A

More than one user, actively using at once, multiple activities going on at once
(most often in servers, websites, etc)

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

**What is “Partitioning”?

A

taking a hard drive and making it into multiple storage areas;

Making one Physical Drive into multiple Logical drives. Each Partition is assigned a letter
(ie. “E drive”)

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

What is step 1 of the start up sequence?

A

The BIOS invokes the Power On Self Test (POST), checks the system hardware to make sure everything is working properly

17
Q

**What is the POST?

A

Power On Self Test - CPU, RAM and Keyboard must be in place in order to start up, all of the info initially goes into RAM

18
Q

What is step 2 of the start up sequence?

A

After POST, the BIOS-CMOS executes various instructions including looking for boot devices from which to boot:

1) Recalls all saved settings
2) Recalls date and time
3) Looks for boot devices (OS to load)
- you can manipulate boot order in BIOS if you need to

19
Q

What is step 2.5 in the start up sequence?

A

The BIOS system check info goes into RAM

20
Q

What is step 3 of the start up sequence?

A

Once the bootable drive is identified, the first part of the OS to activate is the “Boot Strap Loader”

21
Q

**What is the “Boot Strap Loader”?

A

The beginning code for the OS, all BSL’s for OS’s are located in the same exact set/location on the hard drive, CD, thumb drive or any device it is started on

22
Q

What is step 4 of the start up sequence?

A

Once the OS BSL has fully executed, the OS itself takes over the remainder of the boot-up process

23
Q

What is a “graceful” shut down?

A

shutting the OS down the way it was intended to be shut down

24
Q

What is an “un-graceful” shut down?

A

opposite of graceful, you just STOP the computer

25
Q

What is the MAIN function of an Operating System?

A

It runs your hardware

26
Q

What is a “Process”?

A

Any running program on your computer