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

Wand text() function in Python with examples

By Pratham Jain

In this tutorial, you will learn about the Wand text() function with examples. Earlier we have discussed wand function() function in python. Suppose, we now want to insert text in .... Read More

Phyllotaxis Pattern in Python

By Priya Bansal

In this tutorial, we’ll learn about the concept and implementation of the phyllotaxis pattern in Python. Phyllotaxis is a common repeating spiral pattern in plants. The nomen.... Read More

Calculator which follows BODMAS rules in Java

By Priya Bansal

Today we’ll implement a calculator that follows the BODMAS rule using Java. BODMAS expands to – Bracket Of Division Multiplication Addition Subtraction. It is a gl.... Read More

Heap Pollution in Java

By Priya Bansal

Today, we’ll learn about Heap Pollution in Java. It is also called bad data in memory. In Java, it is a kind of situation, which occurs whenever a parameterized variable poin.... Read More

Related Posts