Common Terms used in IT Industry that Everyone should know

“John, Can you deploy Branch 675 on UAT environment”. If John was a fresher then he would understand nothing in the above instruction given to him by senior. When we join any industry as a fresher then the most common problem we face is that we are not aware of the common terminologies/jargon used for … Read more

Local vs Instance vs Class vs Reference variable in Java

In Java we have 4 type of variables :- Local Variable Instance Variable Class variable Reference variable Java developers often get confused while using these terms, let us understand the difference between them in detail : Local Variable Local variables are those which are defined inside a block, method or constructor. These variables get destroyed … Read more