Latest :

Uncategorized

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 »

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 »

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 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 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 Program To Calculate Commission Percentage | Programs

Java program to calculate salesperson commission. The following program has been written in five different ways like using standard values, Taking inputs through scanner class,  using command line arguments,  user-defined method, creating a separate class. The following code can be used in any different manner, for salesperson, java code sales commission calculator, simple commission calculation program part 2. How to calculate commission rate? ...

Read More »

Java Program To Calculate Discount Of Product | Programs

Java program to calculate discount of a product. With the help of the following program, you can calculate the discount of a product instantly. The following code has been written in five different ways. By using standard values, using command line arguments, while loop, do while loop, user-defined method and creating a separate class. How to calculate a discount on a ...

Read More »

Java Interview Questions : For Beginners With Sample Examples

            What is instance actually mean in line “An Object is instance of class.”.? Instance means an example (or an occurrence). So an object is an example of a class. We can understand it as ‘Gandhi’ is an example of the class ‘Human’, similarly ‘Lincoln’ is an example of the class ‘Human’ and ‘Mother Teressa’ is an example of ‘Human’. ...

Read More »

Java Program To Calculate Average Of N Numbers

Java program to calculate the average of N numbers. Here is the code to calculate the average of N numbers or average of 2 or 3 numbers. The following code has been written in three different ways, using standard values, using do while, recursion, command line arguments, creating a separate class, user-defined method. How to calculate the average of N ...

Read More »