Print maximum number of A’s using given four keys in Python

By Balender Singh

In this tutorial, we will learn how to print the maximum numbers of A’s in python, Let’s get started! Imagine you have an uncommon console with the accompanying keys: Key 1.... Read More

C++ program for Array Representation Of Binary Heap

By Amit Raja Kalidindi

In this tutorial, we are going to learn how to represent a Binary Heap using an array in C++. In a Binary Tree, if all the levels are completely filled excluding the last level and.... Read More

Tokenizing a string in C++

By Amit Raja Kalidindi

In this tutorial, we are going to learn how to tokenize a string in C++. The process of splitting a string into tokens with respect to a given delimiter is known as tokenizing. Exa.... Read More

Data Abstraction in C++

By Amit Raja Kalidindi

In this tutorial, we are going to learn about Data Abstraction in C++. Data Abstraction is the process of showing only the functionality of an object by hiding its implementation d.... Read More

C++ Program to replace a word with asterisks in a sentence

By Vishal Patil

Hello everyone, in this tutorial, we will write a C++ program to replace a word with asterisks in a sentence. Below is the given C++ code that will replace the specific word with a.... Read More

Python Array Module

By Karun Thannickal

In this tutorial, we look at the array module present in Python. The array module is used for the efficient handling of numeric values. We look at similarities and differences betw.... Read More

Program to change RGB colour model to HSV colour model in Python

By Karun Thannickal

In this tutorial, we will learn how to write a program to change the RGB color model to the HSV color model in Python. The RGB model describes the amount of Red, Green and Blue pre.... Read More

Cyclic barrier in Java

By Priya Bansal

In this tutorial, We’ll learn about Cyclic Barrier in Java. Cyclic Barrier is basically a synchronizer in JDK5 on java.util.concurrent package. It allows various threads to w.... Read More