Find Armstrong Number in Java

This article shows programs to Find Armstrong Number in Java. Basically, checking for an Armstrong is an important programming problem to learn a programming language. Also, it helps in developing programming logic. Meanwhile, you can find more information on Armstrong numbers here. In order to write a program, first, we need to develop its logic. Therefore, we can write an […]

Programs to Find Armstrong Numbers in C#

This article contains Programs to Find Armstrong Numbers in C#. To begin with, let us first understand what is an Armstrong number? Armstrong Number To illustrate, suppose we have a number n. Further, suppose it has total m digits. Now take each digit of the number at a time and compute the value of that digit raised to the power […]

Matrix Multiplication in C#

This article demonstrates the implementation of Matrix Multiplication in C#. Undeniably, matrix multiplication is one of the most important operations on matrices. By and large matrix multiplication is used in many fields such as computer graphics, scientific computation, implementing algorithms, network theory, data science, applications of artificial intelligence and machine learning, image processing, and so on. Particularly, it is used […]

One Dimensional and Two Dimensional Indexers in C#

This article explains One Dimensional and Two Dimensional Indexers in C#. In short, an indexer allows an object to behave like an array. What is an Indexer? Basically, an indexer is a member of a class in C#. The following list provides important points regarding an indexer. Since, indexers are members of a class, they are accessible using the objects […]

Parameterized Constructor Example in Java

This article demonstrates Parameterized Constructor Example in Java. At first, we describe constructors in a class. Role of Constructor in a Class Since a class contains insance variables that each object of the class has its own copy, so it also needs a mechanism to initialize those instance variable. Indeed, a constructor provides such mechanism to a class. In general, […]

Sorting in Ascending Order in Java

This article demonstrates Sorting in Ascending Order in Java. In fact, array sorting is used in nearly every kind of computer application. It is an important algorithm that we must implement efficiently. Moreover, we can implement sorting in many ways. According, several kinds of sorting algorithms exist. For instance, we have bubble sort, insertion sort, selection sort, heap sort, quick […]

Static Class Example in C#

Today I will explain a Static Class Example in C#. To begin with, let us first understand what is a static class. Static Class in C# Basically, a static class in C# is a class, which can’t be instantiated. Therefore, the purpose of creating a static class is to define methods that can’t be associated with any object. Whenever we […]

Using Numbers As Command Line Arguments in Java

This article demonstrates a program Using Numbers As Command Line Arguments in Java. To begin with, let us first understand what is a command-line argument. In general, a command-line argument is passed to the program at the time of executing the command to run the program. In other words, when we run a Java program at the console, we can […]

Working with Classes and Objects in Java

This article describes Working with Classes and Objects in Java. Basically, class is a user-defined type. While an object is a real-world entity. Further, an object has attributes and also has a behavior. Since Java is an object-oriented language, a Java program comprises one or more classes containing certain members. Syntax of Creating a Class in Java So, we declare […]