Mr. Satyabrata has Published 387 Articles

On-Premise IoT Platforms and Examples

Mr. Satyabrata

Mr. Satyabrata

Updated on 29-Aug-2023 19:28:19

118 Views

IoT is growing rapidly. IoT platforms do all the tasks from data collecting & storage to analyzing the data. It makes IoT platforms the backbone of the IoT ecosystem. In the market, there are two main types of IoT platforms one is cloud−based & other one is on−premise. ... Read More

Check If a Particular File System is Open or Not in Java

Mr. Satyabrata

Mr. Satyabrata

Updated on 18-Aug-2023 09:15:39

451 Views

In Java, a file system is a hierarchical structure used to organize and store files and directories on a storage device. It provides a standard way to access and manipulate files and directories, regardless of the underlying storage device, such as a hard disk, USB drive, or cloud storage. ... Read More

How to Read a File into an ArrayList in Java?

Mr. Satyabrata

Mr. Satyabrata

Updated on 17-Aug-2023 17:45:16

2K+ Views

In Java, an ArrayList is a resizable array, which is implemented as part of the Java Collections Framework. It is a dynamic data structure that can hold any type of objects, including primitive types such as integers and characters. As per the problem statement we have to read a ... Read More

How to Convert Char to Int in Java?

Mr. Satyabrata

Mr. Satyabrata

Updated on 17-Aug-2023 17:35:59

524 Views

In Java, smaller datatype can be converted to bigger datatype. Here, we will see how to convert char datatype to int datatype. The char data type is a single 16-bit Unicode character. It has a minimum value of '\u0000' (or 0) and a maximum value of '\uffff' (or 65, 535 ... Read More

Create a Matrix and Fill Primary Diagonal with 1 and Secondary Diagonal with 2

Mr. Satyabrata

Mr. Satyabrata

Updated on 17-Aug-2023 17:33:03

203 Views

In Java, a matrix can be represented using a two-dimensional array. Matrices are used for storing and manipulating data that have a tabular structure. Matrices have several properties and operations associated with them, such as addition, subtraction, multiplication, transposition, and determinant calculation. As per the problem statement we have ... Read More

Java Program to Create a Matrix and Fill it With Prime Numbers

Mr. Satyabrata

Mr. Satyabrata

Updated on 17-Aug-2023 17:29:42

394 Views

In Java, a matrix can be represented using a two-dimensional array. Matrices are used for storing and manipulating data that have a tabular structure. Matrices have several properties and operations associated with them, such as addition, subtraction, multiplication, transposition, and determinant calculation. As per the problem statement we have ... Read More

Java Program to Create a Matrix and Fill it With Palindrome Number

Mr. Satyabrata

Mr. Satyabrata

Updated on 17-Aug-2023 17:27:34

156 Views

In Java, a matrix can be represented using a two-dimensional array. Matrices are used for storing and manipulating data that have a tabular structure. Matrices have several properties and operations associated with them, such as addition, subtraction, multiplication, transposition, and determinant calculation. As per the problem statement we have ... Read More

Java Program to Create a Matrix and Fill it With Armstrong Number

Mr. Satyabrata

Mr. Satyabrata

Updated on 17-Aug-2023 17:25:59

78 Views

In Java, a matrix can be represented using a two-dimensional array. Matrices are used for storing and manipulating data that have a tabular structure. Matrices have several properties and operations associated with them, such as addition, subtraction, multiplication, transposition, and determinant calculation. As per the problem statement we have ... Read More

Java Program for Arithmetic Operations Between BigDecimal and Primitive Data Types

Mr. Satyabrata

Mr. Satyabrata

Updated on 17-Aug-2023 17:24:04

116 Views

BigDecimal is a class in Java's java.math package that provides arbitrary-precision decimal arithmetic. It allows precise decimal calculations without the loss of precision that can occur with floating-point arithmetic. BigDecimal objects are immutable, so any arithmetic operation on them creates a new object with the result of the operation. ... Read More

Find Difference Between Sum of All Rows and All Columns in Java

Mr. Satyabrata

Mr. Satyabrata

Updated on 17-Aug-2023 17:21:36

81 Views

In Java, a matrix can be represented using a two-dimensional array. Matrices are used for storing and manipulating data that have a tabular structure. Matrices have several properties and operations associated with them, such as addition, subtraction, multiplication, transposition, and determinant calculation. As per the problem statement we have ... Read More

Advertisements