Counting Number of Files in a Directory in Java

By Akash Tripathi

Hello Friends, Today we’ll be learning to count the number of files in a certain directory using Java. Before beginning, we need to get familiar few methods for the same. The.... Read More

Python program to calculate the area of a parallelogram

By Prakash Raj

In this tutorial, we are going to learn how can we calculate the area of the parallelogram in the Python programming language. The parallelogram is a geometrical figure of a four-s.... Read More

Enter ‘*’ between two identical characters in a string using Python

By Nitesh Jhawar

If you are a Computer Science student, I believe you like problems which test your logic building abilities. Well, your wait is over because today we are going to solve the problem.... Read More

Implementation of FizzBuzz game in python

By shubham singh

In this tutorial, we will learn how to implement the FizzBuzz game in Python. By the help of python, we can implement different types of games. Here are some examples: Build a Numb.... Read More

Find count of multiples of 3 or 5 in given range in C++

By Rohit Nandan Dubey

In this tutorial, we are going to learn the basic and efficient code of the given problem that is Find count of multiples of 3 or 5 in the given range in C++. Initially, we will kn.... Read More

Maximum subarray sum of a given array using c++

By Rohit Nandan Dubey

In this C++ tutorial, we are going to discuss the maximum subarray sum of a given array. Firstly we will learn what is subarray? What is Subarray in C++ A subarray is a contiguous .... Read More

Print frequency of each character in a string in Python

By Nitesh Jhawar

In this tutorial, we will learn how to print the frequency of each character in a string using Python. Frequency of each character in a string For that, we have two methods. Using .... Read More

Text watermark on an image in Python using PIL library

By Prakash Raj

In this program, we gonna learn how to make text watermark on an image in python using PIL library. You can also refer to this simple watermark tutorial: Watermark image using open.... Read More