Rudradev Das has Published 79 Articles

Difference Between InputStream and OutputStream in Java

Rudradev Das

Rudradev Das

Updated on 19-Oct-2023 13:23:58

1K+ Views

InputStream and OutputStream both are the abstraction process which can be implemented to access the low level data sets as pointers . They are the signified APIs to specify a particular data sequence of an operation by following some individual steps. The InputStream rearranges a data set as an ordered ... Read More

Difference between Inheritance and Interface in Java

Rudradev Das

Rudradev Das

Updated on 19-Oct-2023 13:22:02

1K+ Views

Inheritance is a Method to create a hierarchy between multiple classes by replicating some properties from others. There are various types of inheritance present in Java, such as single inheritance, multiple inheritance, multilevel inheritance, hybrid inheritance, and hierarchical inheritance. Interface is the blueprint of a particular class which consists ... Read More

Page Faults in LRU

Rudradev Das

Rudradev Das

Updated on 05-May-2023 11:35:46

1K+ Views

Paging is a memory management process related the operating systems. It stores or retrieve some process data from the secondary data storage into the primary data storage or memory by using the page segement. The paging process happens when the process encounters any fault in a page and we can ... Read More

Page Faults in LFU

Rudradev Das

Rudradev Das

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

2K+ 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

446 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

143 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

134 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

146 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

206 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

159 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

Advertisements