“Identifier” is a token name that categorizes tokens representing names assigned by the programmer.
Consider the code int sum = a + b;:
Each token is assigned a token name based on its type, such as Identifier, Keyword, Operator, Literal, etc. Token names help the compiler understand the structure and semantics of the source code during compilation.