Manipulators in C++ with some examples

By Shristi Singh

In this tutorial, we will learn about Manipulators in C++. Manipulators are used for changing the output results. They are formatting outputs. It is of two types: Manipulator funct.... Read More

Structure Inheritance in C++ with Example

By Karandeep Singh

Hey, guys today we are going to learn about inheritance in C++. Inheritance is a crucial characteristic of Object-Oriented Programming (OOPs).It shows the relation between two or m.... Read More

Implementation of Jump Search in Java

By Satyam Chauhan

Hello guys, in this tutorial we are going to learn how to implement jump search in Java. This searching algorithm can be applied only on sorted data just like binary search. In thi.... Read More

Isspace() function in C++ with an example

By Sonal Bera

Hi guys, today we try to see what is the isspace() in C++. When we insert a string into the system, it may or may not have spaces among them. So if we need to check if such kinds o.... Read More

AdaBoost Algorithm for Machine Learning in Python

By Dipam Hazra

In this tutorial, we will learn the AdaBoost algorithm for machine learning in Python. The AdaBoost algorithm is one of the most important ensemble techniques in machine learning a.... Read More

How to Construct an array from its pair-sum array in Python

By Aditya Goyal

In this tutorial we are going to learn how to construct an array from its pair-sum array in Python. It is an array that consists of the sum of all the pairs in an orderly fashion. .... Read More

Predict food delivery time using machine learning in Python

By Yash Gandhi

This tutorial will help you to learn food delivery time prediction using machine learning in Python. At present in the world, many businesses are going online and people give order.... Read More

Implementation of Affine Cipher in Python

By Vamsi Krishna

In this tutorial, we shall implement Affine Cipher in Python. The Affine cipher is a monoalphabetic substitution cipher, meaning it uses fixed substitution over the entire message..... Read More