Variables and Types of Variables in java? Definition :- Variables are Identifiers that help to store the Data. Types of Variables in Java.:- 1. Global Variable • Static Variable/…
THIS Keyword in Java :- this is a Keyword which refers to current invoking Object. this keyword is used to access the instance variable and instance methods . a keyword cannot be used wit…
What is ClassLoading in java :- ClassLoading in Java is the process of loading the .class file ( Byte Code ) from Hard disk memory to JVM Memory . A class gets loaded only once. JVM uses …
INSTANCE METHOD 📝 What are Methods in Java : - A method is a collection of statements that perform some specific task and return the result to the caller. A method can p…
Classes and Objects In Java 📝 What is 'Class' in Java? : A Class is a Logical entity or Blueprint using which we can create multiple Objects . We cannot create an Object wit…
© ALL RIGHTS RESERVED CORE JAVA TOPICS