InterviewSolution
Saved Bookmarks
| 1. |
What does the token ‘keyword’ refer to, in the context of Java ? Give an example for keyword. |
|
Answer» Keywords are reserved words, which have special meaning to Java compiler. They form the vocabulary of the language Keywords can not be used as identifier. e.g., class, if, char, new, int etc. |
|