Deepti S has Published 28 Articles

Explain quantifiers in Java regular expressions

Deepti S

Deepti S

Updated on 29-Aug-2023 16:31:53

236 Views

Quantifiers in Java are special characters that allow you to specify the number of times a character or group of characters can occur in a regular expression. The most common quantifiers are: *: One or more instances of the character or set of characters that came before it. ?: ... Read More

Explain character classes in Java regular expressions

Deepti S

Deepti S

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

254 Views

Java regular expressions, is often known as rege. It is employed for searching and manipulating text. They are utilized in numerous applications. Online scraping, email screening, and password validation are a few of them.A pattern that can be employed to match a specific character sequence in a string is also ... Read More

Explain about Varargs in java?

Deepti S

Deepti S

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

274 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

190 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

4K+ 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

453 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

77 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

Final vs Immutability in Java

Deepti S

Deepti S

Updated on 11-Jul-2023 11:05:02

838 Views

The "final" keyword in Java may be employed to define a constant value as well as prevent a variable, method, or class from being changed or overridden. On the other side, immutability describes an object's characteristic of keeping a constant state across the course of its existence. The values of ... Read More

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

Deepti S

Deepti S

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

72 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

344 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

Advertisements