Execution of a Java Program Before understanding the JVM, let’s first understand how a Java source file is executed. First we write the java code and store it with the .java extension. When we compile it, Java compiler (javac.exe) converts…
Tag: JVM
Basic concept of OOP, Class and Object
What is Object Oriented Programming? Object oriented programming (adorably we call it OOP) is all about breaking down large codebase into individual pieces and establishing a relationship between them. In java, those individual pieces are called objects. So, in other…