Mr. Satyabrata has Published 355 Articles

JAVA Program to Replace Element of Integer Array with Product of Other Elements

Mr. Satyabrata

Mr. Satyabrata

Updated on 30-Dec-2022 14:00:34

4K+ Views

Array of Integers refers to an array where all the elements are of Integer type. It is alsocalled an Integer array. As per the problem statement we have to create an Integer array and display the array elements where all the array elements are the product of other elements of ... Read More

JAVA Program to Calculate Radius of Circle with Given Width and Height of Arc

Mr. Satyabrata

Mr. Satyabrata

Updated on 27-Dec-2022 15:22:47

2K+ Views

A circle is a round shape two-dimensional diagram which has no corners. Every circle has an origin point and every point on the circle maintains equal distance from the origin. The distance between the origin and a point in a circle is known as Radius of the circle. And similarly, ... Read More

Java Menu Driven Program to Perform Basic String Operations

Mr. Satyabrata

Mr. Satyabrata

Updated on 27-Dec-2022 15:05:23

4K+ Views

String refers to a sequence of characters. In Java Strings are objects. To create and manipulate strings Java provides the String class. String class has many inbuilt methods which are used for different purposes. We will perform a few basic string operations by using inbuilt String methods. replace() Method: It ... Read More

Java Menu Driven Program to Perform Matrix Operation

Mr. Satyabrata

Mr. Satyabrata

Updated on 27-Dec-2022 14:58:11

4K+ Views

Array in Java is called as a non primitive data type which stores a fixed number of single type values. It is called a one-dimensional array. Whereas matrix refers to a rectangular array or Two-Dimensional array. In this article, we will see how to perform different matrix operations like addition, ... Read More

Java Program to Enter a Number in Digit and Display in Words

Mr. Satyabrata

Mr. Satyabrata

Updated on 27-Dec-2022 14:48:25

3K+ Views

Digits are basically represented in number format or these are integer values. But for pronouncing them we are using words. Every digit has a unique word format. For example, the word format of 1 is “One”. Like that for 2 the word format is “two”, for 3 the word format ... Read More

Java Menu Driven Program to Perform Array Operation

Mr. Satyabrata

Mr. Satyabrata

Updated on 27-Dec-2022 14:40:45

3K+ Views

Array in Java is called as a non primitive data type which stores a fixed number of single type values. It is called a One-dimensional array. In this article, we will see how to perform different array operations like checking duplicate elements, printing array in reverse order, checking largest element, ... Read More

Java Menu Driven Program to Determine Cost of New Membership

Mr. Satyabrata

Mr. Satyabrata

Updated on 27-Dec-2022 14:38:24

354 Views

When we go anywhere for any type of membership they have different prices for different plans. For example silver membership, gold membership, diamond membership, platinum membership etc. where the silver membership costs less than others and platinum membership costs more than other plans. In this article we will see how ... Read More

Java Menu Driven Program to Check Type of a Number

Mr. Satyabrata

Mr. Satyabrata

Updated on 27-Dec-2022 14:33:35

516 Views

In Java we have primitive numeric data types for numbers that are short, byte, int, long, float and double. These numeric data types allow us to represent different integer and real numbers based on their range as a specific data type has its lower and upper range. Below are the ... Read More

JAVA Program to Find Length of Longest Chord of a Circle

Mr. Satyabrata

Mr. Satyabrata

Updated on 27-Dec-2022 14:24:38

171 Views

A circle is a round shape two-dimensional diagram which has no corners. Every circle has an origin point and every point on the circle maintains equal distance from the origin. The distance between the origin and a point in a circle is known as Radius of the circle. And similarly, ... Read More

Find the Area of a Circle Inscribed in a Square in Java

Mr. Satyabrata

Mr. Satyabrata

Updated on 27-Dec-2022 14:17:25

651 Views

A circle is a round shape two-dimensional diagram which has no corners. Every circle has an origin point and every point on the circle maintains equal distance from the origin. The distance between the origin and a point in a circle is known as Radius of the circle. And similarly, ... Read More

Advertisements