Advertisements
Advertisements
Question
Each individual component used in Java statements is called a token. Each token carries a special meaning and takes active part in effective execution of the program. Some of the tokens include literals, identifiers, punctuators, operators, etc. Literals are the constants whereas, the variables are the type of identifiers. The operators are the tokens, used to perform arithmetical and logical operations.
Based on the above discussion, answer the following questions:
- Which of the following is not a literal?
- P
- 'P'
- −99.99
- "Java"
- Which of the following is an operator?
- **
- //
- */
- ||
- Which of the following statements is correct?
- All the lowercase and uppercase letters are tokens.
- The semicolon (;) sign is not a token.
- All the variables are identifiers.
- All the identifiers are variables.
- Which of the following is not a token in Java language?
- Operators
- Assignment
- Separators
- Comments
Answer in Brief
Solution
- i. P
- iv. ||
- iii. All variables are identifiers
- iv. Comments
shaalaa.com
Is there an error in this question or solution?