Deepti S has Published 25 Articles

Explain about Varargs in java?

Deepti S

Deepti S

Updated on 29-Aug-2023 15:41:22

532 Views

A method can accept a variable number of parameters thanks to a Java feature called variable arguments, or varargs. This can be helpful for methods that need to be able to manage an unknown or variable number of inputs. We had two ways to handle methods that needed to take ... Read More

Essential Java Tips and Tricks for Programmers

Deepti S

Deepti S

Updated on 29-Aug-2023 15:34:08

334 Views

Java is a powerful and versatile programming language. It is used in various applications. It's known for its reliability, portability, and safety, which makes it a famous desire for developers. Java is likewise exceptionally easy to analyze, which makes it a terrific desire for novices. However, it's critical to remember ... Read More

Escape sequences in Java

Deepti S

Deepti S

Updated on 29-Aug-2023 15:29:23

6K+ Views

Escape sequences are a unique kind of character that are used to indicate a different way of interpreting a group of characters. An escape sequence in Java is a character that is preceded by a backslash (). An escape sequence is treated by the Java compiler as a single character ... Read More

equals() vs == in Java

Deepti S

Deepti S

Updated on 29-Aug-2023 14:42:50

731 Views

There are two ways to determine if two objects are equal in Javal: the.equals() method and the == operator. The.equals() function compares the contents of two objects. The == operator compares the references of two objects. When you create an object with the new operator, it gets assigned a specified ... Read More

Object Compression in Java with Examples

Deepti S

Deepti S

Updated on 14-Jul-2023 16:14:07

394 Views

Object Compression in Java Java objects can be stored and transmitted more easily by using a method called Java Object Compression to shrink their size. The object will be compressed using a variety of classes and methods during this process, which can greatly decrease the size of the data. ... Read More

FICO ( Fair Issac and Corporation) | Set 1(On Campus)

Deepti S

Deepti S

Updated on 11-Jul-2023 10:58:40

179 Views

FICO, a prominent data analytics software company catering to both businesses and consumers, holds paramount significance in the realm of perplexity and burstiness. Initially recognized as the Fair Isaac Corporation, the organization opted for a rebranding endeavor in 2009, adopting the name FICO. Its claim to fame lies in the ... Read More

Few Tricky Programs in Java

Deepti S

Deepti S

Updated on 11-Jul-2023 10:37:08

741 Views

Confounding Java questions stem from loops, multithreading, overloading, overriding, and more, making them challenging to navigate. Occasionally, seemingly simple questions confound us, leading to haphazard code instead of straightforward solutions. With analytical thinking, we can crack these questions even without prior knowledge. Join us as we explore tricky programs in ... Read More

Filter Pattern in Java

Deepti S

Deepti S

Updated on 11-Jul-2023 10:33:38

679 Views

The Filter Design Pattern, also known as the Criteria Design Pattern, is a structural design pattern used by developers to filter objects based on different criteria. It enables decoupled filtering and logical operations by chaining multiple criteria into a single criterion. It provides two techniques for creating filters: filtering for ... Read More

Non-blocking Server in Java NIO

Deepti S

Deepti S

Updated on 15-May-2023 17:53:07

985 Views

Non-blocking Server Java NIO (New Input/Output) is a very powerful networking and file-handling application that functions as an alternative to Java's standard IO API. Due to the addition of more sophisticated features since JDK 4's introduction, it has quickly emerged as the preferred I/O system among numerous engineers. The improved ... Read More

Node.js vs Java

Deepti S

Deepti S

Updated on 15-May-2023 17:50:00

407 Views

Overview of Node.js vs Java Java has been a long-standing favorite for programmers worldwide, while Node.js is a relatively new JavaScript runtime environment. This article delves into the differences between Node.js and Java and aims to provide a better understanding of both tools and their respective applications. While we may ... Read More

Advertisements