InfitechX

InfitechX

Hello World Program in Java

Java hello world program

The “Hello World!” program in Java or any other programming languages is the first and basic program that beginners write it. The main purpose of writing this program is to understand the basic syntax and structure of the program. Writing…

Structure of Java Program

Structure of Java program.

In this tutorial, you will learn about structure of Java program and its various components with the help of example. Basically, a Java program involves the following components: Documentation Section in Structure of Java Program Documentation is the first section…

New Keyword in Java

The new keyword is a reserved keyword in Java programming which is used to create a new object or instance of a class. It allocates memory on the heap for the object and returns a reference to that memory. The…

What is Object in Java (with Examples)

Java object

In this tutorial, we will learn about what is object in Java with the help of realtime examples. An object in Java is a named entity that encapsulates state (attributes) and behavior (methods). In other words, a real-world entiry that…

What is Class in Java (with Examples)

Realtime example of class in Java.

We know that Java is a pure object-oriented programming language that allows us to develop a program by using the concept of class and object. A class encapsulates the basic structure of a Java program in a single unit. A…

Basic Java: Fundamentals of Java

Basic Java

Java is a versatile and powerful language to build desktop, web and mobile applications. It’s high level, object oriented, platform independent and easy to learn for beginners. Java was developed by James Gosling and released by Sun Microsystems in 1995.…

What is Java: History, Features, Applications

What is Java

Java is a high-level, versatile, powerful, and widely used object-oriented programming language developed by Sun Microsystems Inc. in 1991. It was developed for consumer electronic devices, but later it was shifted towards Internet. Now, Java has become the widely used…