Found 9178 Articles for Object Oriented Programming

Java Program for Arithmetic Operations Between BigDecimal and Primitive Data Types

Mr. Satyabrata
Updated on 23-Jan-2025 23:07:25

235 Views

In this article, we will explore how to perform arithmetic operations between BigDecimal and Primitive data types by using Java. For instance, Addition: The sum of a BigDecimal object with a value of 10.50 and an int primitive with a value of 5 is a BigDecimal object with a value of 15.50. 10.50 + 5 = 15.50 SyntaxThe syntax doubleValue() method returns the value of a BigDecimal object as a double primitive type. double doubleNum1 = num1.doubleValue(); Where “num1” is a BigDecimal object. What is BigDecimal in Java? BigDecimal is a class in Java's java.math package that ... Read More

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

Mr. Satyabrata
Updated on 17-Aug-2023 17:21:36

138 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 to add sum of all individual rows and columns. Then we need to perform the difference between these added rows and columns and display the result. Let's start! For instance Suppose the original matrix is: {4, 2, 1}, {3, 5, 6}, {8, 9, 7} After performing ... Read More

Get Interior & Exterior Angle of Regular Polygon When Numbers of Sides of Polygon is Given in Java

Mr. Satyabrata
Updated on 17-Aug-2023 17:17:31

117 Views

A polygon is a 2-dimensional closed shape that has at least 3 sides. Depending on the number of sides, relationships of the sides and angles, and other characteristics, polygons can be classified under different names like triangles, squares, and quadrilaterals. An interior angle of a polygon is an angle formed inside the two adjacent sides of a polygon. Exterior angle is defined as the angle formed between a side of triangle and an adjacent side extending outward. In this article, we will find interior and exterior angle of regular polygon when numbers of sides of polygon is ... Read More

How to Know the Separator for a Particular File System in Java

Mr. Satyabrata
Updated on 17-Aug-2023 17:13:07

941 Views

In Java, the file separator is a character that separates the components of a file path. The file separator varies depending on the operating system on which the Java program is running. On Windows systems, the file separator is backslash (\). On Unix-based systems (such as Linux and macOS), the file separator is forward slash (/). Let's start! For instance Suppose that we running the code on windows system After performing the operation to get the separator, the result will be: Separator for this file system is: \ Algorithm Step-1: Import the necessary libraries. ... Read More

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

Mr. Satyabrata
Updated on 18-Aug-2023 09:15:39

964 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. Java provides the java.nio.file package, which contains classes and interfaces for working with file systems. The FileSystem interface represents a file system, and its FileSystems class provides factory methods for creating instances of FileSystem. You can check if a particular file system is open or not by using the FileSystem ... Read More

How to Know the File Store Type in Java?

Mr. Satyabrata
Updated on 17-Aug-2023 17:09:04

208 Views

In Java, the java.nio.file.FileStore class represents a storage pool, device, partition, volume, or other implementation-specific means of file storage. The FileStore class provides methods for querying information about the storage device, such as its total and available space, its file system type, and whether it supports certain features like file attributes or symbolic links. The type() method of the FileStore class returns a string representing the file store type. The file store type is a string that identifies the type of file system used by the file store. Examples of file system types include "NTFS" for the Windows NT ... Read More

How to Know Where the Actual File is Getting Stored in Java?

Mr. Satyabrata
Updated on 17-Aug-2023 17:03:44

142 Views

In Java, you can use the File class to represent and manipulate file and directory paths. You can also use the File class to create, delete, and manipulate files and directories. To know where the actual file is getting stored in Java, you can use the getAbsolutePath() method of the File class. This method returns a string representation of the absolute path of the file, which includes the full path from the root directory to the file. Let's deep dive into the article to see where the actual file is getting saved in Java. For instance ... Read More

Interesting interview question on hashCode and equals method

Shriansh Kumar
Updated on 17-Aug-2023 10:27:15

754 Views

One of the most interesting interview questions that I have encountered in my Java programming career is about the hashCode and equals methods. Interviewers always check whether the candidate knows equals() and hasCode() methods as they are the most important yet most confusing methods of the Java Object class. Both methods are used to check the equality of two or more objects. This article aims to provide some interesting interview questions related to hashCode() and equals() methods that will improve one's knowledge as well as skills. Java Interview Questions on hashCode() and equals() method When an interviewer starts questioning about ... Read More

Interesting and Cool Tricks in Java

Shriansh Kumar
Updated on 17-Aug-2023 09:59:56

204 Views

Java is a widely used programming language available nowadays. It serves to develop a variety of software including web and mobile applications. It is also preferable when it comes to developing a backend system. Java has made tremendous progress over the year that has changed the world. This is the reason why the demand for Java developers is still in the market. Being a Java developer, one might be interested in learning some cool tricks that can make the code more elegant, efficient and fun. In this article, we are going to share some useful tricks that we can use ... Read More

Java @Target Annotations

Shriansh Kumar
Updated on 23-Jul-2024 18:51:00

2K+ Views

When we start learning Java, we often wonder about symbols like @override and @inherited written within the code blocks. They are a special kind of tag termed as Annotations that can be applied to classes, methods, fields, parameters, and other elements of the code. The @Target annotation is one of the types of meta-annotations that specifies the defined annotation type applicable to which code block element. Don't get confused by these terms, we will clear all the doubts and confusion as we move forward in this article. The @Target Annotation of Java The first thing we need to understand is ... Read More

Advertisements