Java Tutorial Series



Java Introduction and Installation

    Java is an Object-Oriented Programming language created in 1995 by a team led by James Gosling. It was created at Sun Microsystems, Inc. and later Sun Microsystems, Inc was acquired by Oracle Corporation.




Java Lesson 1 - Syntax

    
    In this tutorial, we will discuss the structure of a Java code. This lesson will not discuss all the keywords and their meaning. This mostly focuses on showing you what a Java code looks like, briefly explaining what the main components of a Java code are and how to compile and run a Java code. We will be learning deeply about Java keywords and their functions in later tutorials. 




Java Lesson 2 - Aspects of Java Environment


    We are going to discuss the aspects of the Java environment in this tutorial, such as

  • Java compiler
  • Bytecode
  • JVM
  • JDK, JRE



Java Lesson 3 - Comments

    Java comments are statements that are not compiled by the compiler. Therefore, they will not be executed when the Java program is running. The comments are used to provide information and explanation about the Java code that we write. Whenever someone else reads our code, comments make it easier for the person to understand our code...




Java Lesson 4 - Variables

In this tutorial, we learn these topics - what variables are, how to use variables in Java, and the types of variables.






Comments

Popular posts from this blog