Types of Process and State Management

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/8

flashcard set

Earn XP

Description and Tags

These flashcards cover key concepts and definitions from the lecture on process types and state management in operating systems.

Last updated 5:36 AM on 2/21/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

9 Terms

1
New cards

Process

A program in execution that encapsulates the state of a running application, including the code, data, and variables.

2
New cards

Address Space

The range of addresses used by a process to isolate and encapsulate all its state.

3
New cards

Static State

The process state that is available when the process first loads, including code and data.

4
New cards

Heap

A dynamically allocated memory area within the address space used for temporary storage during execution.

5
New cards

Stack

A dynamic part of the address space that grows and shrinks in a last in first out order, storing state during procedure calls.

6
New cards

Last In First Out (LIFO)

A data structure principle where the last element added is the first one to be removed, used in stack operations.

7
New cards

Dynamic State

The state created and modified during the execution of a process, such as temporary results and allocated memory.

8
New cards

Procedure Call

The act of executing a specific portion of code, which may alter the current state of the process.

9
New cards

Popped State

The state that is retrieved and restored from the stack after a procedure call, allowing the process to continue execution.