2.6 Instance Variables
Introduction
Instance variables (also called fields) are declared inside a class but outside any method, and each object gets its own independent copy. They represent the state that differs from one object to another — like each Student's own `name` and `grade`.