Currency Conversion Program in Java

In this section of the java program tutorial, we will learn how to write a Java Currency Converter Program and see how it works. Before we begin, let me tell you that this is a beginner’s tutorial for the currency converter program in java. Although there are many ways in which you can create a … Read more

Evil Number in Java

In this section, we will learn about the evil number and the java program on evil numbers. We will write java code to check the given number for evil number. What is Evil Number? A number is said to be an evil number if it is a positive whole number that has an even number … Read more

Duck Number Program in Java

In this tutorial, we will learn about the Duck number with examples and write a java program for duck numbers. Before that, you may go through the following topics in java. loops in java decision statement in java What is a Duck Number? A number is said to be a duck number if it is … Read more

Algorithm in C Language

In this tutorial, we will learn about the algorithms in C language with examples and practices. Let us start by understanding algorithms. What is Algorithm? An algorithm is a set of well-defined instructions to solve a particular problem. It is a step-by-step procedure to execute some instructions in a certain order to get the required … Read more

Menu Driven Program in Java

In this tutorial, we will write a program on menu driven in java using switch statement along with source code. The switch case is mostly used when it is necessary to give options to the users. If you do not know the working process of the switch case statement then click the link below. switch … Read more

Magic Number Program in Java

In this section, we are going to learn about the magic number in Java and also how to find magic numbers in java. What is Magic Number? A number is said to be a magic number if the sum of its digits is calculated till a single digit is obtained by recursively adding the sum … Read more

Buzz Number Program in Java

In this tutorial, we will start with what is Buzz Number and Write a Java Program to check whether the number is Buzz Number or not. Buzz Number A Buzz number is one of the special numbers that end with 7 or is divisible by 7. For example: 7, 17, 27, 37, etc are buzz … Read more

C++ Pointers

Pointer is an important part of the programming as it deals with the memory address of the variables. There are various tasks that can be achieved easily with the use of pointers in C++ such as dynamic memory allocation that needs pointers for its operation. It also minimizes the execution time and saves memory space. … Read more

C# Array Class

There are various operations that can be done with an array such as creating, manipulating, sorting, searching, etc. This is done by the array class that provides various methods to perform mentioned operation in C#. Note: In C#, Array is not part of the collection but considered as a collection because it is based on … Read more