Skip to main content

Java Tutorial for Beginners



#Topic - 1:

Learn Java in simple and easy steps starting from basic to advanced concepts with examples.

Basically, you have to answer following questions before going to further.

Now you want to be learning java. Great..!but why?

Why would you like to learn java programming language?

It’s okay if you don’t know the reason why you want to become a java developer. This is especially true if you are totally new and you have no idea what java language is, how it is simple or not, it has a good career path or not, etc.

In order to help you have a better understanding and see if java programming language is for you or not, let me do a real quick introduction about java and answer some of common questions. I am going to cover these are all things below introduction topic.


What is the prerequisite knowledge for learning Java or what skills are required for a fresher who wants to work in java?
  •  I would suggest you to have some experience in C language , since its mother of all computer language and have some basics in place before starting JAVA.
  • Basic Knowledge of Computer.
  • Basic Knowledge of Programming(Conditional Statements ,  Looping, Functions , compilation)
  •  Even if Java is your first language to start with (those who are not come from computer science background), you don’t require any prerequisite. Honestly speaking to learn a language requires dedication and interest to understand concepts and implement things in real life. 
So don't worry! , I will teach you from scratch, just give it a start even without having the knowledge about c of computer, you will learn everything gradually during programming. Honestly saying, I had not touch the keyboard before starting the c programming language.  

What is Java?

Java is a programming language and a platform.
Java is a high level, robust, secured and object-oriented programming language.
Platform: Any hardware or software environment in which a program runs, is known as a platform. Since Java has its own run-time environment (JRE) and API, it is called platform.

Why do I need to learn Java?

Learning Java has many benefits. Here are a few.
  1. Knowledge: If you want to learn how software works, Java is one of the easiest programming languages to learn. Since most of the sites and their software systems are in Java, it makes sense to learn it for gaining knowledge. 
  2. Job: Yes, Java is one of the most popular languages in Job market. So learn Java if you want to make a career in software technology. There are still a lot of job opportunities for Java developers. And this skill will open you up to be eligible for more positions.
  3. Automation: If you are a business person and you want to automate some of your tasks, you can learn Java and use it to make your life easy. Java has one of the biggest libraries of software that can be reused for multiple purposes.
  4. Research: If you are a researcher who wants to go deeper into implementing your models, Java is an excellent option to program your model.
  5. Student:Many colleges use Java in their curriculum because it is a pure Object Oriented language. Being pure, makes it easier to teach, because the concepts within the language are uniform. Getting a college CS degree in most cases will improve your career trajectory. It will be useful to you for lifetime.
One of the difficult things about getting started with Java is installing everything you need. Even before you write a single line of code, the headaches begin! Hopefully, Next week I will post about(#Topic-2) what is the software’s needed to start JAVA programming.

If you enjoyed this post, I’d be very grateful if you’d help it spread by emailing it to a friend, or sharing it on Twitter or Facebook. Thank you!  - Shivananda Rai






Comments

Post a Comment

Popular posts from this blog

How to Install Eclipse and Get Started with Java Programming

  #Topic-3 How to Install Eclipse and Get Started with Java Programming. Last topic we have discussed about Java Development Kit (JDK) tool and how to write, compile & run (execute) a java program using notepad and command prompt.If you not go through that ,click this link What is the software’s needed to start JAVA programming . So let’s see How to Install Eclipse and Get Started with Java Programming.   What is Eclipse? Eclipse is famous for Java Integrated Development Environment (IDE), Eclipse is an open-source Integrated Development Environment (IDE). Eclipse is popular for Java application development (Java SE and Java EE) and Android apps. It also supports C/C++, PHP, Python, Perl, and other web project developments via extensible plug-ins. Eclipse is cross-platform and runs under Windows, Linux and Mac OS. The Java Development Tools (JDT) project provides a plug-in that allows Eclipse to be used as a Java IDE, PyDev is a plugin that allows Ecli...

What is the software’s needed to start JAVA programming

#Topic-2 Last week we have discussed about some basic topics like how to start java , what is the use etc , If you are very new to Java programming then click this link Java Tutorials for Beginners. What is the software’s needed to start JAVA programming. If you are new to Java programming and wish to learn it right now by doing some hands-on practice, you have visited the right place. This tutorial will help you what is the software’s needed to write your first Java program, Throughout this tutorial, you will learn fundamental concepts and steps which are necessary for every Java fresher.  In order to write and run a Java program, you need below software / editor: 1. Java Development Kit (JDK) 2. Command prompt 3. Note pad OR 4.IDEs : These IDEs offer a variety of features, like: building Java applications, Testing, debugging, code inspections, code assistance, visual GUI builder and code editor, and more. While you can find several Java IDEs or integrated developmen...

Variables and Data Types in Java

#Topic-5 Previous topic (4) we have discussed about how to start coding! , we have gone through our first Java Program line by line. If you have not gone through that topic, click this link  Your First Java Program: Hello World In this section we will discuss about variable , Data types , Literals and many more! Variable Variable is name of reserved area allocated in memory . In other words, it is a name of memory location . It is a combination of "vary + able" that means its value can be changed.   Example:   int value= 10 ; //Here value is variable float a= 10.50 ; //Here a is variable   There are three major types of variables in java: local variable instance variable static variable 1) Local Variable : A variable which is declared inside the method is called local variable. 2) Instance Variable : A variable which is declared inside the class but outside the method, is called instance variable . It is not declare...