Java Interview Programs

This article includes a big list of java programs for interviews. This includes your coding skills different java interview questions and helps you to understand each of the questions clearly and be a better developer. The idea behind this post is to create a list of all the frequently asked java programming interview questions and … Read more

Java Program to Generate Random Numbers

Generating Random numbers in java is quite easy as it provides various classes to do that. It comes in handy when needed to apply to any kind of application development that might require random number generation. Let start by knowing random numbers. What is Randon Number? We can define Random as something that happens without … Read more

Java Program to Find GCD of Two Numbers

In this tutorial, we will write a java program to calculate the GCD of two numbers. GCD of two numbers in Java: GCD(Greatest Common Divisor) or we can say HCF(Highest Common Factor) of two numbers is the largest number(integer) that divides both the number. Or in other words, two numbers that are divisible by the … Read more