Q1. Is type casting mandatory in Java?
Only required when converting larger data types to smaller ones.
Q2. Can boolean be type cast?
No. Boolean cannot be converted to other data types.
Q3. Is String a primitive data type?
No. String is a non-primitive (reference) data type.
Q4. Which casting is safer?
Widening casting is safer than narrowing casting.
Q5. Can data be lost during type casting?
Yes, during narrowing type casting.