DEV Community

Cover image for The Complete Java Tutorial - Introduction
Harshith VA
Harshith VA

Posted on

The Complete Java Tutorial - Introduction

Hey folks let's learn Java.

Introduction & Motivation

Java is a MUST for students and working professionals to become a great Software Engineer specially when they are working in Software Development Domain.

I will list down some of the key advantages of learning Java Programming:

  • Object Oriented
    In Java, everything is an Object.

  • Platform Independent
    Java compiled code(byte code) can run on all operating systems.

  • Simple
    Java is designed to be easy to learn. If you understand the basic concept of OOP Java, it would be easy to master.

  • Secure
    With Java's secure feature it enables to develop virus-free, tamper-free systems.

  • Portable
    Java programs are portable, which means that the same bytecode program can run on any computer system that has a Java interpreter.

  • Robust
    Java is considered as a robust and strong programming language as it features strong memory management and since Java doesn't use any types of pointers.

Top comments (0)