Arnab Chakraborty has Published 4458 Articles

Concurrency processing in Operating System

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Apr-2023 14:59:46

4K+ Views

Introduction Concurrency processing is the ability of an operating system to execute multiple tasks simultaneously, allowing for efficient utilization of resources and improved performance. In today's computing environment, with the availability of multi-core CPUs and high-speed networking, concurrency processing has become increasingly important for operating systems to meet the demands ... Read More

Concurrency in Operating System

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Apr-2023 14:53:46

12K+ Views

Introduction Concurrency in operating systems refers to the ability of an operating system to handle multiple tasks or processes at the same time. With the increasing demand for high performance computing, concurrency has become a critical aspect of modern computing systems. Operating systems that support concurrency can execute multiple tasks ... Read More

Concept of Address Split in OS

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Apr-2023 14:45:12

305 Views

Introduction Address splitting is a technique used in operating systems to manage memory resources efficiently. It involves dividing the memory space into smaller logical segments, assigning unique identifiers to each segment, and allocating memory resources dynamically to processes as required. Address splitting is essential in modern operating systems as it ... Read More

C++ Program to Get Input from the User

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Apr-2023 14:14:55

668 Views

While writing a program in any language, taking input is a fundamental job that we do in almost all programs. Sometimes we take input directly from the console or take the inputs from the files. Taking inputs from the files is somewhat beneficial because it does not require us to ... Read More

C++ Program to calculate the Highest Common Factor

Arnab Chakraborty

Arnab Chakraborty

Updated on 04-Apr-2023 14:13:10

1K+ Views

The highest Common Factor or Greatest Common Divisor are factors that are maximum and that can divide two or more values without generating any remainder. In this article, we shall discuss a few methods to perform HCF / GCD between two numbers in C++. This is simply a mathematical solution ... Read More

C++ Program to Compute the Sum of Diagonals of a Matrix

Arnab Chakraborty

Arnab Chakraborty

Updated on 14-Dec-2022 16:04:28

4K+ Views

The utilization of 2-dimensional arrays or matrices is extremely advantageous for several applications. Matrix rows and columns are used to hold numbers. We can define 2D matrices in C++ using multi-dimensional arrays as well. In this article, we'll look at how to use C++ to calculate the diagonal sum of ... Read More

C++ Program To Find the Trace and Normal of a given Matrix

Arnab Chakraborty

Arnab Chakraborty

Updated on 14-Dec-2022 15:09:38

919 Views

Several applications greatly benefit from the use of 2-dimensional arrays or matrices. Numbers are stored in rows and columns of matrices. Using multi-dimensional arrays, we may define 2D matrices in C++ as well. In this post, we'll look at how to use C++ to determine the Normal and Trace of ... Read More

C++ Program to Find the Normal and Trace

Arnab Chakraborty

Arnab Chakraborty

Updated on 14-Dec-2022 14:50:37

286 Views

2-Dimensional arrays or matrices are very much useful in several applications. Matrices have rows and columns and store numbers inside them. In C++ also we can define 2D matrices using multi-dimensional arrays. In this article, we will see how to calculate the Normal and the Trace of a given matrix ... Read More

C++ Program to Compare two strings lexicographically

Arnab Chakraborty

Arnab Chakraborty

Updated on 14-Dec-2022 14:47:45

7K+ Views

Lexicographic string comparison states the strings are compared in dictionary order. For example, if two strings ‘apple’ and ‘appeal’ are there, the first string will come next because the first three characters ‘app’ is the same. Then for the first string, the character is ‘l’ and in the second string, ... Read More

C++ Program to Print first letter of each word using regex

Arnab Chakraborty

Arnab Chakraborty

Updated on 14-Dec-2022 14:45:07

350 Views

A useful tool for string operations is regex. This may be found in virtually all high-level current programming languages, including C++. Regular expressions (Regex) are utilized as general-purpose search patterns. For instance, by constructing a straightforward string known as a regular expression, we may implement password validation logic with at ... Read More

Previous 1 ... 5 6 7 8 9 ... 446 Next
Advertisements