Saturday 12 November 2016

Java Tit for Tat

        Hi , I am big fan of JAVA programming language. This blog is to provide some interesting info on Java programming language. For example  

  • Can we override private methods? Yes OR No??
  • Why we should use abstract key word while declaring a class if we have abstract methods? What will happen if we remove abstract??
  • System.out.println("2"+"2");  22 or 4 ?? etc etc  



Let's start with OOPS concept
           
             One should understand the basic concepts before start learning any programming language.

What is OOPS? any guesses?

             Well, Here we go -
  •  OOPS stands for Object Oriented Programming System. We can find many languages which are built on OOPS including JAVA like  C#. Structural C etc....
  •  OOPS means Objects interacting with each other to solve a problem. For given problem statements we are going to identify the Nouns ,verbs which are associated with the Nouns and properties of the Object.
  • In programming language Nouns we map with the Object. Verbs are equal to methods and Properties are equal to variables. 

                   Next blog I will come up with the good example. Lets enjoy our professional journey with JAVA.