A COURSE ON JAVA PROGRAMMING

Introduction to Java!
Java is an Object Oriented programming language, which follows OO concepts strictly for the development of its program. In Java, even a simple program like the one that displays the message “Hello, World!” would require a class, an object-oriented element. Every program in Java starts with the word ‘class’. Without using the basic OO concepts...Classes and Objects in Java
When designing software with Java, we must deal with a large variety of classes. Each class is a separate module, which can interact with other objects through method calls. For example, we might design a bank account class, which acts as a record for storing salary data. Yet we can also include functions that modify or manipulate the data, such as calculating interest or depositing funds.Inheritance in Java
In the real world, objects have different levels of classifications. For example we can call certain objects animals. But those animals can then be classified in different ways such as dogs, cats, birds, and then specific types of dogs, cats, birds, etc. Java inheritance will allow you to do just that, and it will help you to write less code as well as to write more organized code.Advanced Java:
In this section, we are going to learn the topics such as IO handling, Exception handling, Packages, Interfaces, Strings and Multi-threading supported in Java. Follow the link given below to learn each and every one of them in detail:
Thank you Niazi for your comment. I am happy to hear from you about your learning from this blog. I will try to post many more content like this.