* Learn how to declare and use variables of different types in Java. * Java is a statically-typed language, meaning every variable must have a declared type. public ...
* Learn how to convert between different data types in Java. * Widening (implicit): smaller type -> larger type (e.g., int -> double) * Narrowing (explicit): larger ...