Category Core Java

Instance Variable in Java

An Instance variable in Java is used by Objects to store their states. Variables that are defined without the STATIC keyword and are Outside any method declaration are Object-specific and are known as instance variables. They are called so because their values…

Java Reference Variable

Reference variables are used to refer to an object. They are declared with a specific type that cannot be changed. Types of reference variables Static Variable Instance Variable Method Parameter Local Variable

Java Static Keyword

What is Static Static is a Non Access Modifier. Applicable to The Static keyword can be applied to Method Variable Class nested within another Class Initialization Block

Java Array Tutorial

Java Array is a data structure type which is used to store multiple variables of the same type. Arrays can hold Primitives as well as Object. The variables in the array are ordered but not sorted. Each element in the…