Bruce Jay Nelson is believed to have coined the term RPC in 1981. It helps in building distributed, client serverbased...
R3, founded in 2014 by David E Rutter and Todd McDonald, is an enterprise software firm that is pioneering...
Hyperledger Quilt is a one of the business Blockchain tools that aims to facilitate interoperability between ledger systems...
Halving is an event when the reward for mining a new block of cryptocurrency is reduced to half. Halving ensures...
Greedy contracts are contracts that remain alive and lock Ether indefinitely. It does not release Ether in any condition...
The Ethereum Enterprise Alliance (EEA) is a member-led industry organization whose objective is to drive the use...
A channel is a private blockchain overlay which allows for data isolation and confidentiality. Using state channels...
In Java, a static initializer can run code during the initial loading of a class and it guarantees that this code will...
HashSet is better than TressSet in almost every way. It gives O(1) for add(), remove() and contains() operations...
Java Classloader is the part of the Java Runtime Environment (JRE) that loads classes on demand into Java Virtual Machine (JVM)...
In Java, most implementations of Map interface provide a constructor to create copy of another map. But the copy method is not synchronized...
In a Map we can lookup for a value by using a distinct key. In a Map with reverse view and lookup, even the values...
In Collection interface remove(Object o) method is used to remove objects from a Collection...
In a Java collection UnsupportedOperationException is thrown when the requested operation is not supported by the collection...
IdentityHashMap class has one tuning parameter for performance improvement: expectedMaxSize...
In a HashMap collection it is very important for a key object to implement hashCode() method and...
Differences between Fail-fast and Fail-safe iterators are as follows...
An ArrayList is a newer class than a Vector. A Vector is considered a legacy class in Java. The differences are...
Main benefits of Collections Framework in Java are as follows...
Java provides throw keyword to throw an exception from a method or a static block. Java provides throws...