Author: Ayush Purawr
Python | Print Hello world using function
Today in this article, we will talk about how to print “Hello World”, but the only catch is that we will not use the simple…
Python | Reverse a list without recursion
Let us take a look at how to solve this problem with various different methods. Method 1: Using reduce() of functools method Output: Explanation: At…
Python | Check if a string is a palindrome or not using Recursion
Method 1: Using the string slicing method with the recursive approach Output: Explanation Now if the length of the string is less than 1 then…
Python | Find n-th Fibonacci number without recursion
Let us take a look at all the ways using which we can solve this problem. Method 1: Using simple addition Output: Explanation:Here for 0…
Python | Factorial of a number using Recursion
Using the concept of recursion, we have two methods to solve this problem. Let us take a look at that method. Method 1: Using factorial…
Python | Factorial of a number without Recursion
Method 1: Using the numpy library Output: Explanation: We simply used the prod() function of the numpy library, wherein we used a for loop that…
Python Program to Find Sum of Digit of a Number using Recursion
Method 1: Using the divide method Output: Explanation: Here we will be using conditional for checking that if the number is 0 then its sum…
Python Program for the n-th Fibonacci number using recursion
Using recursion we have one way to solve this problem, let us take a look at it. Method 1: Using multiple conditionals Output: Explanation: This…
To Do List in C++
In this article, we are going to create To Do List in C++ with the help of file handling. By using file handling we can persist…
Radha Krishna using Python Turtle
Hello friends, in this article, we will learn to draw a simple drawing of Radha Krishna using Python Turtle. Please share if you like. Image…
Tic Tac Toe Game in C++
In this article, we are going to create Tic Tac Toe Game in C++. This will be a simple console-based application in which the player can…
Supply Chain Management System in Java
In this article, we will build Supply Chain Management System in Java and MySQL with source code. In this project, the users can perform the following functionalities Login, Add…
Snake Game in C++
Hello everyone, in this article we are going to create Snake Game in C++. This will be a simple console-based application in which the player…
Yield Keyword in Python
In this tutorial, we are going to learn about the Yield keyword in Python. It works like a return statement we used in functions. The…
Survey Management System In Java
In this article, we will learn to create a project on survey management system in Java. There are two actors: The user who can add…
Hospital Management System Project in C++
In this article, we will build Hospital Management System Project in C++ and MySQL with source code. This project deals with all the essential operations of managing…
Student Management System Project in C++
In this article, we will build Student Management System Project in C++ and MySQL. Student Management System can help a college or university to maintain…
Bank Management System Project in C++
In this article, we will build Bank Management System Project in C++ and MySQL with source code. This project has all the basic functionalities of…
Library Management System Project in C++
In this article, we will build Library Management System Project in C++ and MySQL with source code. This project is a console application written entirely…
Scooby-Doo using Python Turtle
You must have watched the famous cartoon ‘Scooby-Doo‘. Would it not be great, if we were able to draw its character Scooby-Doo using Python Turtle?…