In the last article, we talked about threads and different types of threads. In this article we are going to talk about paging and how does it work. You can read the last article below. What is Paging? Paging is a memory management scheme by which a computer stores and retrieves data from secondary memory
Author: Gagan Yadav
What is a thread? Types of threads and differences between them.
A thread is a basic unit of CPU utilization consisting of a program counter, a stack, and a set of registers. A thread is a path of execution within a program. A program can contain multiple threads. Threads can’t exist outside any process and each thread belongs to exactly one process. Information like code segments,
What is a process control block PCB and its components.
Process control block (PCB) is a data structure used by a computer operating system to store all the information about a process. The operating system used a data structure named Process Control Block(PCB) to store the information about a particular process, and this information is required by the CPU while executing the process. Each process
What are Zip() and Unzip() in Python and how to use the.
Zip() is a built-in (built-in function are the function which are already define in programming framework) function. So basically zip() function takes any number of iterable and returns a list of tuples, the first element of a tuple is created using the first element from each of the iterables, and so on. Syntax- zip(*iterators) Practical