Category: Java Tutorials

static keyword in java 0

Static Keyword in Java

Java is a popular programming language that is used to develop a wide range of applications. One of the most important concepts in Java is the static keyword, which is used to create variables,...

java scanner class 0

Java Scanner Class

Java scanner class is a class in Java that allows developers to read data from different input sources. The Java scanner class is used to read input data from different sources like the keyboard,...

take string input in java 0

String Input in Java

In Java, taking input from the user is an essential feature for building interactive programs. One of the most common types of input is a string. A string is a sequence of characters, and...

android quiz app project output 0

Runnable Interface in Java

The Runnable interface is a part of the Java Concurrency API. It defines a single method named “run” that takes no arguments and returns no value. Developers commonly use the Runnable interface to create...

java 8 vs 9 vs 10 0

Java 8 vs Java 9 vs Java 10

Java has long been one of the most popular programming languages. It’s used for developing various applications, ranging from mobile to web and desktop applications. Java was developed in the mid-1990s by James Gosling...

java keystore 0

Java Keystore

The Java Keystore is a file format used by Java applications to store cryptographic keys and certificates securely. It is a repository of digital certificates. It can be used to verify the identity of...

hashmap in java 0

HashMap in Java

Java HashMap class implements the Map interface which lets us store the key and value pair. In this case, the keys should be unique, any kind of duplication will result in the replacement of...

design patterns in java 0

Design Patterns in Java

Arriving at problems in various aspects of software design is inevitable. Stating every problem each time is rigorous. It becomes even more hectic if those problems are frequent. Java has come up with an...