Password strength checker in C++

By Ranjeet V

In this tutorial, we will learn how to create a password strength checker in C++. We need our users to create a strong password so that their data is more secure. A strong password.... Read More

JavaScript image Classification in browser with ml5.js using MobileNet

By Faruque Ahamed Mollick

In this tutorial, I am going to show you how to perform the image classification task on the browser using the ml5 JavaScript library with the MobileNet model. I hope, you are alre.... Read More

Merge Multiple Objects in JavaScript

By Faruque Ahamed Mollick

Did you ever try to merge multiple objects into one single object in JavaScript? You may wonder how to create one object that will hold all the items of our objects. Well, this art.... Read More

Find Second Largest value in a dictionary in Python

By Ria Sehgal

In this tutorial, we will learn how to find the second largest value or number in a dictionary in Python. Dictionaries are one of the main data types in Python others than lists, s.... Read More

How to generate a random color code in C++

By Ranjeet V

In this tutorial, we will learn how to generate a random color code in C++ for RGB and HEX values. We can do this by generating a random number using the rand() function and using .... Read More

How to check if a number is float or not in Python

By Nilesh and Sapna

In this tutorial, we will learn how to check if a number is float or not in Python. We can check this in three different ways. type() method comparing with “float” isin.... Read More

Find the smallest and largest number in an array in C++

By Yash Shakya

This is a C++ program to find the smallest and largest number in a given array. It uses a simple comparison method that is applicable in any program. This method uses two variables.... Read More

Find a number not present in second array from given two arrays in C++

By Yash Shakya

This C++ program is able to find which number is not present in the second array from given two arrays by comparing them. This is a question based on array and it utilizes a very b.... Read More

Related Posts