Java Data TypesPrimitive Data Typesbyteshortintlongfloat: ~6-7 decimal digitsdouble: 15 decimal digitschar: surrounded by single quotesbooleanNotes:End the value with an "f" for floats and "d" for doublesNon-Primitive Data TypesString (object): surrounded by double quotesMethodslength(), toUpperCase(), toLowerCase(), indexOf(), concat() or +, see more here.Notes:Non-primitive types can be used to call methods to perform certain operations, while primitive types cannot.A primitive type has alw...