Posts by Monika Maheshwari

Author Biographical Info: Not available

Kahan Summation Algorithm Implementation in Java

By Monika Maheshwari

In this section, we are going to learn about Kahan Summation Algorithm and implement it in the Java program. This algorithm is also known as compensated summation, it is generally .... Read More

Conversion of binary fraction to decimal in Java

By Monika Maheshwari

In this section, we are going to learn how to convert Binary to Decimal in Java. So, we can divide this problem into two parts i.e one for calculation of integral part and other fo.... Read More

Convert Decimal fraction to binary in Java

By Monika Maheshwari

In this section, we are going to learn how to convert a decimal fraction into binary in Java. So, we can divide this problem into two parts i.e one for integral and other for decim.... Read More

Difference between Argument and Parameter in Java

By Monika Maheshwari

In this section, we are going to learn a difference between Argument and Parameter in Java. They both caries the same value but actually they are different from each other. Argumen.... Read More

How to create your own helper class in Java

By Monika Maheshwari

In this section, we are going to learn about the Helper Class in Java. Helper Class is used to hold the functions that are going to be used repetitively in the multiple classes. Th.... Read More

Implement LRU Cache Decorator in Python

By Monika Maheshwari

In this section, we are going to implement Least Recently Used cache decorator in Python. It works on the principle that it removes the least recently used data and replaces it wit.... Read More

How to find Entry with largest value in Java Map

By Monika Maheshwari

In this section, we will find the key with maximum value for a given HashMap.Basically, HashMap is used to store <Key, Value> pair in which all the keys are unique. Approach .... Read More

Object Serialization with Inheritance in Java

By Monika Maheshwari

In this section, we are going to talk about serialization with the help of code. So, Serialization is referred to as a process in which an object is converted into a stream of byte.... Read More

Related Posts