InterviewSolution
Saved Bookmarks
| 1. |
Which is a valid keyword in java? |
| Answer» interface is a valid keyword. Option B is wrong because although "String" is a class type in Java, "string" is not a keyword. Option C is wrong because "Float" is a class type. The keyword for the Java primitive is float. Option D is wrong because "unsigned" is a keyword in C/C++ but not in Java. | |