Arnab Chakraborty has Published 3734 Articles

C program to find maximum of four integers by defining function

Arnab Chakraborty

Arnab Chakraborty

Updated on 14-Sep-2023 02:25:05

38K+ Views

Suppose we have four numbers a, b, c, and d. We shall have to find maximum among them by making our own function. So we shall create one max() function that takes two numbers as input and finds the maximum, then using them we shall find maximum of all four ... Read More

Roman to Integer in Python

Arnab Chakraborty

Arnab Chakraborty

Updated on 14-Sep-2023 01:09:07

37K+ Views

Suppose we have Roman literals; we have to convert them into an integer. As we know the Roman numerals represent in some different symbols as below −NumeralValueI1V5X10L50C100D500M1000If we see the roman numbers closely, it is like suppose the numeral is 'II', so this is 2, there are two 'I's are ... Read More

Disk Management in Operating System

Arnab Chakraborty

Arnab Chakraborty

Updated on 07-Apr-2023 16:09:40

15K+ Views

As a computer user, you might have noticed that your computer's hard drive can become cluttered and slow over time. This is where disk management comes into play. Disk management is a process used by your computer's operating system to manage the storage of your data on your hard drive. ... Read More

Dining-Philosphers Solution using Monitors

Arnab Chakraborty

Arnab Chakraborty

Updated on 07-Apr-2023 16:07:56

11K+ Views

An operating system is software that manages every single aspect of a computer so that it can function smoothly and properly. Because of this reason, the OS has to perform several tasks simultaneously. Doing simultaneous tasks isn’t really a problem for the OS but when this simultaneous task uses a ... Read More

Deadlock, Starvation & LiveLock

Arnab Chakraborty

Arnab Chakraborty

Updated on 07-Apr-2023 16:06:41

4K+ Views

In operating system, there are some common types of "stucking" situations. Among these, Deadlock, Starvation, and Livelock are three well-known terms. Deadlock, Starvation, and Livelock are related concepts in computer science that deal with synchronization issues in concurrent systems. Understanding these concepts is important for designing and implementing correct and ... Read More

Difference between Deadlock Prevention and Deadlock Avoidance

Arnab Chakraborty

Arnab Chakraborty

Updated on 06-Apr-2023 18:23:49

12K+ Views

Deadlock prevention and avoidance are crucial in operating systems because they help ensure that the system can continue to operate without being stuck in a deadlock. Deadlocks can cause a system-wide halt, leading to loss of data, system downtime, and reduced productivity. Therefore, it is essential to prevent or avoid ... Read More

File System Structure

Arnab Chakraborty

Arnab Chakraborty

Updated on 05-Apr-2023 17:47:54

25K+ Views

Introduction A file system is a way of organizing and managing files on a storage device such as a hard disk or a flash drive. It provides a logical structure to the physical storage space and allows users and applications to access and manipulate the files. A file system typically ... Read More

File system consistency checker

Arnab Chakraborty

Arnab Chakraborty

Updated on 05-Apr-2023 17:45:05

1K+ Views

Introduction A file system consistency checker (FSCK) is a utility used to check and repair errors in a file system. It is important to maintain the health of a file system to avoid data loss and other problems. FSCK scans the file system for inconsistencies such as missing or corrupt ... Read More

File Sharing and Protection

Arnab Chakraborty

Arnab Chakraborty

Updated on 05-Apr-2023 17:36:37

22K+ Views

Introduction File sharing is the practice of distributing or providing access to digital files between two or more users or devices. While it is a convenient way to share information and collaborate on projects, it also comes with risks such as malware and viruses, data breaches, legal consequences, and identity ... Read More

File Protection

Arnab Chakraborty

Arnab Chakraborty

Updated on 05-Apr-2023 17:35:17

31K+ Views

Introduction File protection in an operating system is the process of securing files from unauthorized access, alteration, or deletion. It is critical for data security and ensures that sensitive information remains confidential and secure. Operating systems provide various mechanisms and techniques such as file permissions, encryption, access control lists, auditing, ... Read More

Advertisements