Non-primitive data types in Java Data types define the type of data that is stored in the variable. The type specifies the…
examples
-
-
Hashing Techniques in Java The hash function is a key-value mapping function. When two or more keys are mapped to the same…
-
How to Capitalize the First Letter of a String in Java? In programming, most of the time we have to deal with…
-
Identifiers in Java Identifiers in Java are symbolic names used for identification. They can be a class name, variable name, method name,…
-
Convert Java Object to Json using GSON JSON stands for JavaScript object notation, is a lightweight format for storing and transporting the…
-
Java URL Encoder Java URLEncoder is a utility class used to encode the URLs (Uniform Resource Locator). Reliability and security are ensured…
-
Character Array in Java Character Array in Java is an Array that holds character data types values. In Java programming, unlike C,…
-
AWT Program in Java AWT stands for Abstract window toolkit is an Application programming interface (API) for creating Graphical User Interface (GUI)…
-
Set in Java The set is an interface available in the java.util package. The set interface extends the Collection interface. An unordered…
-
NoClassDefFoundError in Java Just like ClassNotFoundException, NoClassDefFoundError occurs at runtime. We get this error when the class is not available in the…