Found 9326 Articles for Object Oriented Programming

Java Program to illustrate the Usage of Hexadecimal

Sakshi Ghosh
Updated on 11-Aug-2023 14:24:07

118 Views

Here, the usage of Hexadecimal shall be demonstrated through the Java Program. Let us get acquainted with the term Hexadecimal before seeing a Java program. The Hexadecimal is a type of number system that has a base value of 16. There are 16 symbols representing hexadecimal numbers. These symbols or values are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, and F. Each digit represents a decimal value.  The hexadecimal numbers from 0 to 9 are equivalent to decimal numbers from 0 to 9. Further, A represents 10, B represents 11, C represents ... Read More

Java Program to Illustrate the Availability of Default Constructor of the Super Class to the Sub Class by Default

Sakshi Ghosh
Updated on 11-Aug-2023 14:04:10

71 Views

Here, we will demonstrate the availability of the default constructor of the super class to the sub class by default through Java Program. Before diving deep into the topic, let us get acquainted with the term Constructor, Super class, and subclass. Constructor A special method in Java is considered for the initialization of an object. The name of the constructor is the same as the class name and it does not return anything. A default constructor is invoked by itself whenever an object is created using a new keyword. There are following three types of constructors in Java ... Read More

Java Program to Illustrate Escaping Characters in Regex

Sakshi Ghosh
Updated on 11-Aug-2023 13:03:31

443 Views

Here, we will demonstrate escaping characters in Regex through Java Program. Before diving deep into the topic, let us get acquainted with the term Escaping Characters and Regex. Regex It is an acronym for a Regular expression. It is an API that offers users to define String patterns that are useful for finding, modifying, and editing strings. A couple of areas of strings where Regex is frequently used to define the limitations include email validation and passwords. The java.util.regex package encompasses regular expressions. Escape character When a character is preceded by a backslash (\), it includes numbers, alphabets, and ... Read More

How to Use Enumeration to Display Elements of Hashtable in Java?

Harischandra Prasad
Updated on 03-Aug-2023 15:15:00

290 Views

A Hashtable is a powerful data structure in Java that allows programmers to store and organise data in key-value pairs. Many applications need retrieving and displaying entries from a Hashtable. In a Hashtable, any non-null object can serve as a key or a value. However, for successful storage and retrieval of items from the Hashtable, the objects used as keys must implement both the equals() method and the hashCode() method. These implementations ensure proper handling of key comparisons and hashing, enabling efficient management and retrieval of data within the Hashtable. Through the utilization of the keys() and elements() ... Read More

How to Use Different Row Methods to Get Number of Rows in Table using JDBC?

Harischandra Prasad
Updated on 03-Aug-2023 15:10:22

75 Views

The ability to interact with databases is an important requirement for many software programs in this data-driven world. Java is a versatile and robust programming language that offers Java Database Connectivity (JDBC), an effective mechanism that enables smooth interaction with different database systems. JDBC is an API that offers a standardised interface for Java applications to communicate with databases. We can perform operations like querying, inserting, updating, and deleting data using it as a bridge between the Java application and the database. This article helps us to delve into the world of Java's JDBC API, enabling us ... Read More

Why does an online Judge crash during an online Programming Contest?

Way2Class
Updated on 01-Aug-2023 15:13:54

80 Views

We all are well aware are that now-a-days various coding platforms include competitive codings, for example GeeksforGeeks, CodeChef, Codeforces, atCoder, SPOJ, HackerRank, HackerEarth, and many more where they supposed to code out by themselves by either attaching local editor file such as a sublime editor or by directly writing on their respective editors. So how are these test cases getting accessed or in an easy way we can say that our code is getting compiled and run? On these programming platforms for competitive programming online judges act as the backbone for code compilation and run. Online Judge To judge ... Read More

Left Shift Operator in Java

Way2Class
Updated on 01-Aug-2023 13:49:07

546 Views

The execution of instructions in programming languages involves the operation of various symbols referred to as "operators." Operators tell computers what action/value evaluation should be performed throughout set codes. Arithmetic-based operates consist of performing essential calculations like addition/subtraction/multiplication/division. Played out with relational-oriented operates that indicate interactions between any two values and analyzes when one is greater/equal/less with regards to another value - showing its relevance under certain conditions. Logical-operates' primary role often includes merging diverse quality statements into significant arguments either as True/False statement criteria based on developers' intentions efficiently using all three indispensable operator types. Left Shift Operator in ... Read More

Join two ArrayLists in Java

Way2Class
Updated on 01-Aug-2023 13:46:36

1K+ Views

An Array is a collection of certain elements that can be anything which takes up the adjacent memory locations. Here we store multiple elements of the same type together. An ArrayList is a class that is resizable unlike the in-built Array. An essential concept to comprehend involves recognizing how an ArrayList separates itself from a typical Array since only the former allows modifications through adding or deleting its elements. Importantly, one can easily access numerous variations of highly-functionalized ArrayLists through the java.util package capable of performing diverse operations. In this particular article we will demonstrate different approaches to join two ... Read More

Which Data Type cannot be stored in Java ArrayList?

Way2Class
Updated on 01-Aug-2023 13:41:53

425 Views

An ArrayList is a dynamic list of objects and you can't store primitive values like int, double, char or long in an ArrayList. The creation of wrapped class in java allows for holding of primitive data types and each object belonging to these types holds a single value for its respective primitive data type (int, double short or byte).To work with primitive data types in Java structures like JLists or ArrayLists which require objects, we need to use wrappers, and this article explains how to use ArrayList to store simple data types such as int and char. Primitive Data types ... Read More

Pattern class in Java

Way2Class
Updated on 01-Aug-2023 13:38:53

306 Views

Pattern class is represented as a compiled version of the regex pattern. The pattern class is provided in java.util.regex package. This class has various methods for various operations like matching, splitting, searching, etc. In order to create a pattern object a compile method is used. Syntax public static Pattern compile(String regex) Here regex represents a regular expression which is a String. And to compile this we use this method. Moreover, this compiled object can be used to match a pattern using the Matcher method. Algorithm To compile and match a pattern, follow the steps below − Step 1 ... Read More

Advertisements