In Java, you declare a variable by specifying its **type** then its **name**:
```java
int age = 25; // integer
String name = "Alex"; // text
`
Unlike JavaScript or Python, you can't just write age = 25. Java needs to know upfront: what kind of data goes here?
Run this — notice how each variable holds its own type.