Print alphabet mirror image pattern in C++

By Anne Caroline Glory Prince

In this tutorial we will learn how to print the alphabet mirror image pattern. The program accepts the integer and prints the pattern as output. The variable ‘rows’ is .... Read More

Moving a file from One Directory to Another using Java

By Akash Tripathi

Hey Folks, You must have moved your files from one directory to another number of times, but have you done it with the help of Java? If not, then let’s learn it today. Here I.... Read More

Rock, Paper and Scissors game in C++

By snormy

This tutorial would help in the understanding of the following topics: Functions User-input Recursion The “Rock, Paper and Scissors” is a classic game that can be used .... Read More

Double Ended Queue in CPP – deque in C++

By Astha Awasthi

In this CPP tutorial, we are going to discuss the Double Ended Queue and its implementation. In Queue we have studied that insertion is done at the rear side and deletion is done f.... Read More

Pronic number in Python

By Rachna Patel

Hi Pythoneers, In this tutorial, we will learn how to check if a number is a pronic number or not in Python. How many of you know what is a Pronic number? According to Wikipedia, .... Read More

Friend Function in C++

By Shanigaram Mahesh

In this tutorial, we will learn about friend function in C++ and what is the use of it. let us see with some example program. What is a friend function? A friend function is a non-.... Read More

How to take user defined input in Python?

By Chelamalla Meghana

Being a beginner you might have a doubt to how to take user defined input in python. In Python, we use the ‘ input() ‘  function to take the input from the user. As Py.... Read More

Calculate the discriminant value in Python

By Prakash Raj

In this session, we are going to discuss the definition of the Discriminant and how to calculate it’s valued by taking 3 points in Python. How to calculate the discriminant v.... Read More

Related Posts