Latest :

Author Archives: Writer - MK

C Program To Calculate Perimeter Of Rhombus | C Programs

C Program to calculate the perimeter of a rhombus – In this particular article, we will discuss the several ways to calculate the perimeter of a rhombus in C programming. The methods used to do so are as follows: Using Standard Method Using Functions Using Pointers Using Macros As we all know, a rhombus is a 2-dimensional quadrilateral figure whose ...

Read More »

Java Do While Loop With Examples – Java Tutoring

do while loop in java

Do while in Java Everything you need to know about Java do while with a flowchart and example program with output and complete methods and basics. – Learn more Java Tutorials and Beginners Programs. So Basically what are loops In Java? Def : ‘Executing a set of statements’ process is known as looping. We have three types of looping constructs in Java. ...

Read More »

Total Surface Area Of Sphere Java Program | Programs

Java Program for finding Total surface area of a sphere. Here we have discussed about the various methods to calculate the Total Surface Area Of Sphere such as using the standard formula, Command Line Arguments and Class name in the main method. The compiler is added to each program mentioned with sample outputs. Sphere is a completely round object in a ...

Read More »

Mean Java Program In 4 Simple Methods | Java Programs

Java Program To Calculate Mean – In this article, we will brief in the various methods to calculate the mean in Java Programming. For mean java source code, we have written in multiple ways. If you have any queries let us know in comments. The methods used in this article are as follows: Using Standard Method Using Scanner Class Using ...

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 Program To Calculate Average Marks | 5 Methods

Java program to calculate the average of marks. Here we cover five simple ways to find out the average of marks in Java programming. If you know the basics of coding, you can even write more than 5+ ways. However, as a newbie, we share the program in 5 different ways. Do check it out. Our database consists of more ...

Read More »

C Program Volume Of Cuboid | C Programs

C program to find the volume of a cuboid – In this stipulated article, we will talk about the multiple ways of how to find the volume of a cuboid in C programming. Several suitable examples and sample outputs have been added as well. The compiler has been added for the proper understanding of the following C programming codes. The ...

Read More »

C Program To Calculate Perimeter Of Square | C Programs

C Program to Calculate the perimeter of a square – In this distinct article, we will brief in on the multiple ways to calculate the perimeter of a square in C Programming. In this blog, we have given suitable examples and sample programs for you. The compiler has also been added in order to understand the codes little better. The ...

Read More »

Java: VAT Calculator Program In 2 Ways | Java Programs

Java program to calculate VAT, Value-Added Tax. VAT is tax that is levied on the consumer when he/she buys the product or service. VAT is multi stage tax and something which is levied on each stage of production. Although the tax is levied upon the producers or the businesses (for easy understanding) it is the consumer or end user who ...

Read More »

Java While Loop – Tutorial & Examples

While Loop In Java – Executing a set of statements repeatedly is known as looping. We have 3 types of looping constructs in Java. These looping statements are also known as iterative statements. While For Loop Do While All the three are used primarily with same purpose and the difference is in their syntax. Because of the syntactical differences, their ...

Read More »