Key Concepts in Computer Memory and Process Management

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/58

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

59 Terms

1
New cards

address binding

the process of mapping a program's symbolic addresses to physical addresses in memory

2
New cards

application software

programs designed to help users perform specific tasks, such as word processing, web browsing, or gaming

3
New cards

batch processing

a method of executing a series of jobs on a computer without manual intervention where tasks are processed in batches

4
New cards

base register

a register in the CPU that holds the starting address of the current memory segment; used in address translation

5
New cards

bounds register

a register that holds the ending address of a memory segment, ensuring that memory accesses stay within the allocated range

6
New cards

context switch

the process of storing and restoring the state of a CPU so multiple processes can share a single CPU

7
New cards

CPU scheduling

the method by which an operating system decides which processes should be executed by the CPU and in what order

8
New cards

demand paging

a memory management scheme where pages of data are brought into memory only when they are needed rather than in advance

9
New cards

dumb terminal

a simple display and input device with no processing power relying on a central computer for computing tasks

10
New cards

dynamic partition technique

a memory management method where memory is divided into variable-sized partitions based on the needs of processes

11
New cards

first-come, first-served (FCFS)

a CPU scheduling algorithm that processes requests in the order they arrive without priority

12
New cards

fixed partition technique

a memory management method where memory is divided into fixed-sized partitions, each holding one process

13
New cards

frame

a fixed-size block of physical memory used in paging systems to hold pages of virtual memory

14
New cards

logical address

an address generated by the CPU during a program's execution that is then translated to a physical address

15
New cards

mainframe

a large, powerful computer that can handle many simultaneous users and tasks, often used in enterprise environments

16
New cards

memory management

the process of controlling and coordinating computer memory, including the allocation and deallocation of memory spaces

17
New cards

multiprogramming

a method where multiple programs are loaded into memory and executed by the CPU concurrently to maximize resource use

18
New cards

non-preemptive scheduling

a CPU scheduling method where a running process is not interrupted and is allowed to finish before another process starts

19
New cards

operating system (OS)

the main software that manages computer hardware and software resources and provides services for computer programs

20
New cards

page

a fixed-size block of data in memory management representing a portion of a process's virtual address space

21
New cards

page map table (PMT)

a table used in virtual memory systems to track the mapping between virtual pages and physical frames

22
New cards

page swap

the process of moving pages between physical memory and disk storage to manage space in memory

23
New cards

paged memory technique

a memory management method that divides memory into fixed-size pages to minimize fragmentation and efficiently manage memory

24
New cards

partition memory management

a method of dividing memory into segments or partitions, each of which can hold a different process

25
New cards

physical address

the actual location in computer memory hardware where data is stored

26
New cards

preemptive scheduling

a CPU scheduling method where a running process can be interrupted and replaced by another process before it finishes

27
New cards

process

an instance of a running program, including its current state and memory information

28
New cards

process control block (PCB)

a data structure the operating system uses to store all information about a process

29
New cards

process management

managing the operating system's execution of processes, including their creation, scheduling, and termination

30
New cards

process states

the various stages a process goes through during its lifecycle, such as new, ready, running, waiting, and terminated

31
New cards

real-time system

a computing system that processes data and responds to inputs in a specific, often very short, time frame

32
New cards

response time

the time taken from the submission of a request to the start of the system's response

33
New cards

round-robin

a CPU scheduling algorithm where each process is assigned a fixed time slice in a rotating order

34
New cards

shortest job next (SJN)

a CPU scheduling algorithm that selects the process with the shortest expected execution time next

35
New cards

single contiguous memory management

a memory management method where all processes are loaded into a single contiguous block of memory

36
New cards

system software

software designed to provide a platform for other software, including operating systems and utility programs

37
New cards

thrashing

a condition where excessive paging operations occur leading to reduced system performance

38
New cards

time slice

a fixed amount of CPU time allocated to each process in a round-robin scheduling algorithm

39
New cards

timesharing

a method where multiple users can access a computer system concurrently by sharing time slices of the CPU

40
New cards

turnaround time

the total time taken from the submission of a process to its completion

41
New cards

virtual machine

software emulation of a physical computer, providing the same functionality as a physical machine

42
New cards

virtual memory

a memory management technique that creates an illusion of a large contiguous memory space by using disk storage to extend physical memory

43
New cards

absolute path

the complete and specific location of a file or directory in a file system, starting from the root directory

44
New cards

binary file

a file that contains data in a format that is not human readable; typically used to store executable programs or complex data structures

45
New cards

direct file access

the ability to retrieve or manipulate data from a file directly without sequentially accessing preceding data

46
New cards

directory

a container used to organize files into a hierarchical structure on a computer system

47
New cards

directory tree

a graphical representation or hierarchical structure of directories and subdirectories in a file system

48
New cards

disk scheduling

the method an operating system uses to efficiently schedule access to disk resources, aiming to reduce seek time and optimize performance

49
New cards

file

a named collection of data stored on a computer system, which can be text, an image, an executable, or any other type of information

50
New cards

file extension

a suffix attached to the end of a filename indicating the format or type of the file

51
New cards

file system

the method and data structure an operating system uses to organize and store files on storage devices such as hard drives

52
New cards

file type

the classification or category of a file based on its content and format that determines how it can be used or opened

53
New cards

path

a string of characters that specifies the location of a file or directory in a file system

54
New cards

relative path

a path that specifies the location of a file or directory relative to the current working directory

55
New cards

root directory

the top-level directory in a file system hierarchy, which contains all other directories and files

56
New cards

seek time

the time it takes for a hard drive's read/write head to move to the track where the data are stored

57
New cards

sequential file access

accessing data in a file by sequentially reading or writing from the beginning to the end

58
New cards

text file

a file that contains plain text characters, typically encoded in ASCII or Unicode, and is readable by text editors and word processors

59
New cards

working directory

the current directory in a file system from which a user or program is operating