Java Basics

This category contain Java basic tutorials

Arrays in Java

In this tutorial, we will learn about Arrays in Java. Till now we learned about variables. We know in a variable we can store a value, for example, int num=10; Here num is variable of int type in which we can store an integer value. but suppose you want to store 100 values. It means you should …

Arrays in Java Read More »

Comments in Java

In this tutorial, we will learn about Comments in Java. Comments are not used to perform any function in the program but they are really useful for developers. Developers can write comments with variables and Methods to remember their working (purpose) in the program. One important thing to mention comments doesn’t put any impact on the …

Comments in Java Read More »

Operators in Java

In this tutorial, we will learn about Operators in Java. Operators are special symbols that we use to perform special operations like the addition of two numbers. Java provides us with a wide range of operators which help us to perform special operations. In Java, all the operators are divided into different categories All the …

Operators in Java Read More »

Keywords in Java

In this tutorial, we will learn about Keywords in Java. Java provides a wide range of keywords to us. Every keyword has some special meaning in Java. We can not use any keyword as a class name or as a variable name. All keywords have some predefined meaning which the Java compiler knows very well …

Keywords in Java Read More »

Introduction to Java

In this tutorial, we will learn Introduction to Java. Java is an object-oriented programming language. Java language was developed by James Gosling at Sun Microsystems Inc. In starting they were thinking of naming this language Oak, But this name was already registered by another company so they named it Java. Java is a breed of coffee. …

Introduction to Java Read More »

Scroll to Top