Java Runnable Interface Java runnable is an interface used to execute code on a concurrent thread. It is an interface which is…
jdbc
-
-
Memory Management in Java In Java, memory management is the process of allocation and de-allocation of objects, called Memory management. Java does…
-
NoSuchElementException in Java The NoSuchElementException is thrown by an Enumeration’s nextElement method which indicates that there are no more elements left in…
-
NumberFormatException in Java The NumberFormatException is thrown when we try to convert a string into a numeric value such as float or…
-
Java UUID What is UUID? UUID stands for Universally Unique Identifier. UUID are standardized by the Open Software Foundation (OSF). It is…
-
Java vs JavaScript Java is an object-oriented, general purpose programming language (though it is not entirely object-oriented as it contains primitive types).…
-
Java vs. Python Java has been a robust programming language since its first release, but with new technologies coming in the market…
-
JDBC Driver JDBC Drivers JDBC-ODBC bridge driver Native-API driver Network Protocol driver Thin driver JDBC Driver is a software component that enables…
-
What is Java SE? The SE stands for Java Standard Edition is a computing platform in which we can execute software, and…
-
Java main() method The main() is the starting point for JVM to start execution of a Java program. Without the main() method,…