Latest :

Author Archives: Writer - MK

C Program To Find Volume of Sphere | C Programs

C program to calculate the volume of a sphere – In this particular article, we will brief in on the several ways to calculate the volume of a sphere in C programming. Check out the blog for the suitable examples and sample programs. The compiler has been added as well so that you can check the results yourself. The methods used ...

Read More »

Java : Return/Get First Element In Array List | 4 Ways

Java get first element of array list, the following Java program has been written in a multiple ways to print the first element of an array in Java along with outputs, if you have any doubts you can leave a comment here. Check – Java Return Last Element In Array This code is for displaying or printing out the first ...

Read More »

Java Program : Maximum Edge of A Triangle | Java Programs

Java program to calcuate the maximium edge of triangle, Our problem statement here is, to find the longest side or edge of a triangle. For this, our required input will be, the lengths of three sides or edges of a triangle. Our expected output is, one of these three edges that is the longest of all. Initially, to read the ...

Read More »

Java Program To Concatenate Two Strings | Java Programs

Java Program For Concatenating Two Strings – In this specific article, we will cover the Java Program for concatenating or combining two user-defined strings in Java language along with suitable examples and sample output.   The problem here is to concatenate two strings input by the user. The input here is two strings that are input by the user. The ...

Read More »

C Program to find the Area Of a Circle

C Program to find the Area of a Circle – In this particular article, we will detail in how to find the area of a circle in C Programming. There are multiple ways explained in this piece on how to find the area of a circle. Check out the suitable examples and the sample programs mentioned to explain the c ...

Read More »

C Program Area Of Equilateral Triangle | C Programs

C Program to find the area of an equilateral triangle – In this particular article, we will detail in on the various methods to calculate the area of an equilateral triangle. The several methods used to do so are as follows: Using Standard Method Using Function Using Pointers Using Macros In this blog piece, we have added suitable examples and ...

Read More »

Hollow Rhombus Star Pattern Program In C | Patterns

Hollow Rhombus star pattern program in C – In this distinct article, we will explain how to print a hollow rhombus star pattern in C Programming. A bunch of methods are used to print the Hollow Rhombus Star Pattern in C Programming such as: Using For Loop Using While Loop Using Do-While Loop As we all know, Rhombus is a ...

Read More »

Java Program to Calculate Restaurant Bill | Java Programs

Java code to calcuate the resturant bill, the following program is pretty simple one along with sample outputs. We have choosen the famous south indian food to create the following program. We all go to restaurants frequently and eat. Today, let us write a code to calculate the restaurant bill. With multiple items in a restaurant (in our case 10), ...

Read More »

Java Program : Convert Lowercase Character to Uppercase in Java

Java Program to Convert lowercase character to uppercase character, the following program has written in different ways to convert small alphabets to capital alphabets. Sample output is also added after the Java program, Java String toLowercase() and toUpperCase(). Our problem statement here is, to convert all the lowercase character of the given input into uppercase. To do this, we require ...

Read More »

Find Missing Third Angle in Triangle : Java Program

Java Program to enter two angles of a triangle and find the third angle in Java, to find the missing third angle, we first need the other two known angles of the triangle. Our expected output is whether the angle is an acute angle, an obtuse angle or a right angle. To begin the solution, we first require the two ...

Read More »