👉 In mathematics and computer science, an instance is a specific object that represents a single piece of data in a program. It can be thought of as a "part" of a larger computation or problem. For example: ``` int x = 5; int y = 3; // This is the instance for x x = 10; // This changes the value of x // This is the instance for y y = 7; // This changes the value of y