Rudradev Das has Published 80 Articles

Page Faults in LFU

Rudradev Das

Rudradev Das

Updated on 05-May-2023 11:29:40

1K+ Views

The Least Frequently Use aka LFU is a concept of page memory management, can also be used as a replacement algorithm. This process take a lead we the particular page needs a replacement when a new page is on the way by the process. LFU is one of the page ... Read More

Python Program to Count Inversions of Size Three in A Given Array

Rudradev Das

Rudradev Das

Updated on 13-Apr-2023 12:23:12

398 Views

Inversion count is a step counting method by which we can calculate the number of sorting steps taken by a particular array. It is also capable to count the operation time span for an array. But, if we want to sort an array in a reverse manner, the count will ... Read More

Java Program for range LCM queries

Rudradev Das

Rudradev Das

Updated on 13-Apr-2023 12:20:03

131 Views

Ranging a query is a common database current interest operation present in data structure to restore all the records where the output value lies between an upper and lower boundary. This process works with some input data, to structure them in an efficient manner on any subset of a particular ... Read More

C++ Program for range LCM queries

Rudradev Das

Rudradev Das

Updated on 13-Apr-2023 12:16:47

124 Views

Ranging a query is a common database current interest operation present in data structure to restore all the records where the output value lies between an upper and lower boundary. This process works with some input data, to structure them in an efficient manner on any subset of a particular ... Read More

C++ Program to Count Inversions of size three in a given array

Rudradev Das

Rudradev Das

Updated on 13-Apr-2023 12:12:26

140 Views

Inversion count is a step counting method by which we can calculate the number of sorting steps taken by a particular array. It is also capable to count the operation time span for an array. But, if we want to sort an array in a reverse manner, the count will ... Read More

Python 3 Program For Range LCM Queries

Rudradev Das

Rudradev Das

Updated on 13-Apr-2023 12:07:22

194 Views

Ranging a query is a common database current interest operation present in data structure to restore all the records where the output value lies between an upper and lower boundary. This process works with some input data, to structure them in an efficient manner on any subset of a particular ... Read More

Java Program to count inversions of size three in a given array

Rudradev Das

Rudradev Das

Updated on 13-Apr-2023 12:02:43

134 Views

Inversion count is a step counting method by which we can calculate the number of sorting steps taken by a particular array. It is also capable to count the operation time span for an array. But, if we want to sort an array in a reverse manner, the count will ... Read More

Java Program to show the Nesting of Methods

Rudradev Das

Rudradev Das

Updated on 13-Apr-2023 11:58:33

3K+ Views

Nesting of methods is a hybrid function calling method in Java, which can call another method in the same class. There are two types of nested classes are available in a Java environment. Non-static nested class (also known as , the inner class) Static nested class A non-static ... Read More

Java Program to Show Different Access Levels

Rudradev Das

Rudradev Das

Updated on 13-Apr-2023 11:54:48

167 Views

Access modifiers are used to set the feature of visibility of some particular classes, interfaces, variables, methods, constructors, data members, and the setter methods in Java programming language. In a Java environment we have different types of access modifiers. Default - If we declare a function, it will visible ... Read More

Java Program to Sort 2D Array Across Left Diagonal

Rudradev Das

Rudradev Das

Updated on 13-Apr-2023 11:49:25

394 Views

In the field of data structure, the vector is a growable class array of a particular object. The vector class falls in the legacy class which is fully compatible with the collections. In java.util package, the List interface can use all the methods listed here. Here is the initial capacity ... Read More

Advertisements