
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Bhanu Priya has Published 1449 Articles

Bhanu Priya
23K+ Views
Message Passing provides a mechanism to allow processes to communicate and to synchronize their actions without sharing the same address space.For example − chat programs on World Wide Web.Now let us discuss the message passing step by step.Step 1 − Message passing provides two operations which are as follows −Send ... Read More

Bhanu Priya
4K+ Views
Inter process communication requires communicating to establish a shared memory region. A shared memory region is present in the address space for the process that creates the shared memory segment. And other processes are communicating using a shared memory segment that is attaching it to their address space.Operating system prevents ... Read More

Bhanu Priya
19K+ Views
Shared memory system is the fundamental model of inter process communication. In a shared memory system, in the address space region the cooperating communicate with each other by establishing the shared memory region.Shared memory concept works on fastest inter process communication.If the process wants to initiate the communication and it ... Read More

Bhanu Priya
2K+ Views
When the user wants to give an instruction to the OS then it will do it through system calls. Or a user program can access the kernel which is a part of the OS through system calls.It is a programmatic way in which a computer program requests a service from ... Read More

Bhanu Priya
14K+ Views
A process is a program in execution and it is more than a program code called as text section and this concept works under all the operating system because all the task perform by the operating system needs a process to perform the taskThe process executes when it changes state. ... Read More

Bhanu Priya
7K+ Views
UNIX is one of the most popular operating systems on multi-user systems. Actually, it originated as a single-user system. It has limited structuring.UNIX OS consists of two separable parts which are as follows −System programs.Kernel.Now, let us see the architecture of UNIX.Unix ArchitectureUnix operating system architecture is divided into four ... Read More

Bhanu Priya
14K+ Views
A process can create several new processes through creating process system calls during the process execution. Creating a process we call it the parent process and the new process is a child process.Every new process creates another process forming a tree-like structure. It can be identified with a unique process ... Read More

Bhanu Priya
1K+ Views
There are two methods to implement inter process communication they are as follows −Shared memoryMessage passingNow, let us understand what a shared memory is.Shared memoryIt is one of the regions for data communication. It is used for communication between single processor and multiprocessor systems where the processes that are to ... Read More

Bhanu Priya
234 Views
A windows operating system is software that acts as an interface between the user and the hardware component. The operating system is like a prime minister that controls the entire task happening in the computer. It is in between a user interface and the hardware.It is system software. In the ... Read More

Bhanu Priya
20K+ Views
System call provides an interface between user program and operating system. The structure of system call is as follows −When the user wants to give an instruction to the OS then it will do it through system calls. Or a user program can access the kernel which is a part ... Read More