
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
6K+ Views
The essential properties of the different types of operating systems are as follows −Batch Operating systemJobs with similar needs are batched together and run through the computer as a group by an operator or automatic job sequencer. Performance is increased by attempting to keep CPU and I/O devices busy at ... Read More

Bhanu Priya
632 Views
The dispatcher is done after the scheduler. It gives control of the CPU to the process selected by the short term scheduler. After selecting the process, the dispatcher gives CPU to it.Functions of dispatcherThe functions of the dispatcher are as follows −Switching context.Switching to user mode.Jumping to the proper location ... Read More

Bhanu Priya
502 Views
Let us understand what algorithmic paradigms are.Algorithmic paradigmsAn algorithmic paradigm is a generic model or framework that underlies the design of a class of algorithms. It is an abstraction higher than the notion of an algorithm, and higher than a computer program.The different algorithm paradigms are as follows −Brute force ... Read More

Bhanu Priya
1K+ Views
System calls are a method to program for communicating through an operating system. Application developers unable to possess straight access with system calls might be able to access with API (Which indicates the way that software components must communicate).System call provides an interface between the user program and the operating ... Read More

Bhanu Priya
19K+ Views
Interrupts are generally called signals which are generated by the software or hardware when a particular event or process requires immediate attention. So, the signal informs the processor about a high priority and urgent information demand causing an interruption in the current working process.Thus, whenever an interruption occurs the processor ... Read More

Bhanu Priya
3K+ Views
An interrupt is generally called as a signal, which is informing a program that a particular event has occurred. It causes a receiving program to stop and create a program to serve the interrupt.Example − When some process is running into the operating system and when you type a keystroke ... Read More

Bhanu Priya
6K+ Views
Inter process Communication (IPC) is a mechanism which allows the exchange of data between processes. It enables resource and data sharing between the processes without interference.Processes that execute concurrently in the operating system may be either independent processes or cooperating processes.A process is independent and it may or may not ... Read More

Bhanu Priya
201 Views
Let us discuss about the below two types of message passing systems, which are as follows −Client Server Message PassingConsider an application that you are trying to read data from the filesystem. That means here the application is a client requesting the data from a server. This client or server ... Read More

Bhanu Priya
2K+ Views
Whenever the transaction between user and kernel mode is required, a context switch is not necessary; simply a mode transition is not a context switch. Because, depending on the operating system, a context switch may also take place at this time.Let us see the major steps of Context SwitchingThe values ... Read More

Bhanu Priya
7K+ Views
Let us begin by understanding what process suspension is.Process suspensionWhenever the processes in main memory are entered into the blocked state, the operating system suspends one process by putting it in the Suspended state and transferring it to disk. The free space present in the memory is used for bringing ... Read More