How to convert a Set to Stream in Java

By Shivam Purohit

Hello programmers, in this tutorial you will learn how to convert a Set to Stream in Java. In this tutorial, we are going to add some integers in a HashSet and then convert those i.... Read More

Exception Handling Comparison in C++ and Java

By Priya Bansal

Today we’ll see a comparison of exception handling in C++ and Java. Exception handling is one of the important features in the programming world. It tells the compiler how to.... Read More

Implementing Count-Min Sketch in Java

By Priya Bansal

Today, we’ll be learning about how to implement count-min sketch in Java programming language. Implementing a count-min sketch in java involves the use of hash functions and .... Read More

Phone Directory Implementation in C++

By Ramneeq Sodhi

Here we are going to make our own C++ program to make a phone directory. So what is a phone directory and how to create it? A phone directory is a collection of data, which consist.... Read More

Find Minimum cost to connect all cities in C++

By Ramneeq Sodhi

In this article, we are going to learn how to find the minimum cost to connect all cities in C++ programming. The problem is that we are given a number of cities there is a specifi.... Read More

JVM shutdown hook in Java with example

By Shradha Jadhav

Let’s see about the JVM shutdown hook in Java in this tutorial. The JVM, which stands for ‘Java Virtual Machine’ normally shutdowns if the program exits normally .... Read More

Aadhaar Card Number Validation Using Javascript

By ROHIT PANDEY

Here we will learn how to Validate Aadhaar Card Number in Javascript. To validate Aadhaar Card Number using javascript we will use Regular Expression and we will see how to use reg.... Read More

Group all Anagrams together in C++

By Anurag Verma

In this tutorial, we are going to learn to group all the anagrams together in a given vector of strings with C++. For instance, the given vector of strings is [“rams”,&.... Read More