Java Program to Find the Data of Birth of Given (New/Old) National Identity Card(NIC) Number
In this program, you'll learn to find the Date of Birth of given National Identity Card(NIC) Number of Sri Lanka. …
In this program, you'll learn to find the Date of Birth of given National Identity Card(NIC) Number of Sri Lanka. …
A palindrome is a word, phrase, number, or other sequence of characters which reads the same backward or forward. Allow…
Given a rod of length n inches and an array of prices that contains prices of all pieces of size smaller than n. Determine t…
There are many circumstances where we need to find out if something is a member of a set, and there are many algorithms f…
Here is the example is show quick way to calculate the MD5 hash of a string. I know things with Java have to be well structu…
Read a roman number and convert that into decimal. For such a problem we have to find a suitable solution. we need to write …
In the sub field of numerical analysis, a sparse matrix is a matrix populated primarily with zeros as elements of the table.…
Finding an algorithm to answer this question may seem challenging because finding all the different permutations of a string…
In this program, you'll learn to solve the Infix to Postfix Conversion using Stack. There is an algorithm to conver…
A classic combinatorial problem is to place n queens on an n × n chess board so that no queen threatens any other queen, th…
Here, you can calculate the age of a person easily through the given program. This program takes your complete date of birt…
In this program, you'll learn to Find Day of the Week for a Given Date in Java.Write a function that calculates the day …
In this program, you'll learn to Convert two dimensional array into one dimensional array in Java. Two-dimensional array…
In this program, you will learn to Subtract Two Matrix Using Multi-dimensional Arrays . This is done by using a for loop sta…
In this program, you'll learn to add two matrices using multi-dimensional arrays in Java.we are going to calculate the s…
In this program, you'll learn to Calculate Yesterday and Tomorrow Date without using Calendar in Java .This is done usin…
In this program, you will learn to create a basic calculator.A basic calculator is able to add, subtract, multiply or divide…
Bubble Sorting is an algorithm in which we are comparing first two values and put the larger one at higher index. Then we t…
In this program, you'll learn to create pyramid, half pyramid, inverted pyramid in Java. To print patterns of number…