HBHarshal Bafnainharsh8-9.hashnode.dev·Feb 16, 2023 · 1 min readInstance Variables vs Local Variables in JAVAInstance Variables:- Variables that are declared in the global scope i.e. at class level. By default, their values are initialized to default values depending on data types. For ex. for int data type, value is initialized to 0. The memory for inst...00