Which of these is a valid keyword in Java?
interface
string
float
unsigned
Correct Answer: A — interface
Explanation:
"String" and "Float" are class types in Java. "unsigned" is a keyword used in C/C++ but not in Java.