Java Basic
1. What is Class, Object, State, Behavior? Class: A template that describes the kinds of state and behavior that objects of its type support Object: At runtime, when the Java Virtual Machine (JVM) encounters the new keyword, it will use the appropriate class to make an object which is an instance of that class. That… Read More »