You now have the foundation for every Java program you'll write. You know how to declare variables with explicit types, choose between int and double for numbers, and use boolean for true/false logic.
You practiced type casting (widening happens automatically, narrowing requires a cast operator), learned that String is a reference type compared with .equals(), and locked down constants with final. Next up: you'll use these variables in expressions and operations.