Latest :

Author Archives: Writer - MK

Java Program for Matchstick Houses | Java Programs

Java program for matchstick houses, This challenge will help you interpret mathematical relationships both algebraically and geometrically. Create a function that takes a number (step) as an argument and returns the amount of matchsticks in that step. See step 1, 2 and 3 in the image above. Examples: matchHouses(1) ➞ 6 matchHouses(4) ➞ 21 matchHouses(87) ➞ 436 To find the ...

Read More »

Java : Hurdle Race & Jump Solution Hackerrank | Java Programs

Hurdle race & hurdle jump java program Hackerrank solution, Create a function that takes an array of hurdle heights and a jumper’s jump height, and determine whether or not the hurdler can clear all the hurdles. A hurdler can clear a hurdle if their jump height is greater than or equal to the hurdle height. Examples: hurdleJump([1, 2, 3, 4, ...

Read More »

Java : Return the Last Element in An Array & N Elements | Java Programs

 Java program to return the last element in an array – Here we written the program in four different ways to find the last element of array in Java along with outputs as well.Get last Print Last Element – Static Method Here, our problem statement is to find the last element in the given array. For this, our required inputs ...

Read More »

Java Program : Calculate Batting Average Example | Programs

Java Program to calculate the batting average. The following program is written in five different ways by using standard values, user-defined method, scanner class, through creating a separate class. Do check it out. Methods we used in this Cricket Batting Program: Using standard Method Using Scanner Class Using Command Line Arguments User Define Method Separate Class By Using Standard Values There ...

Read More »

Java Program To Calculate Modulus | Mod Java

Java Program To Calculate Modulus – In this article, we will explain the multitude of methods to calculate the modulus of a number in Java Programming. Suitable examples and sample programs have been included in order to make you understand simply. The compiler has also been added so that you can execute the programs yourself. The methods used in this ...

Read More »

Java Program To Calculate Power Of Number | 4 Ways

Java Program To Calculate Power Of Number – In this article, we will detail in on the several ways to calculate the power of a number in Java programming. Suitable examples and sample programs have also been added so that you can understand the whole thing very clearly. The compiler has also been added with which you can execute it ...

Read More »

Java : Print Hello Gretting Before Name | Java Programs

Hello Java program – now you can showoutput as Hello, before any of your name. The following code is written in different ways, check out. This code is used to print out or display a greeting by taking input from a user using Java language. The problem here is to print out a greeting addressing someone (example : Hello Gerald) ...

Read More »

Java Program Calculate Total Surface Area Of Cylinder | 3 Ways

How to write a java program to calculate the total surface area of a cylinder? Well! That’s quite simple here we share in three different ways to write Java code for the total surface area of a cylinder. Soon online execution tool is going to be embedded for each program such that you can execute here itself. In case if ...

Read More »

C Program To Count Total Number Of Notes in Given Amount

C Program to count the total number of notes in a given amount – In this distinct article, we will describe the multiple ways to count the total number of notes in a given amount in C programming. The ways used to count the total number of notes in a given amount in C programming are as follows: Using Standard ...

Read More »

Volume Of Cuboid : Java Program In 3 Simple Ways

Java program to calculate the volume of a cuboid. We can find the value of cuboid in so different ways. We do written the code in 3 different ways check out the table of contents so that you will get an idea. If you have any doubts related to the following java program to find the volume of cuboid, then do ...

Read More »