

InterviewSolution
Saved Bookmarks
1. |
hich of the following is a valid identifier? and why? My name Paper.size 4_me int float New-life |
Answer» please mark me as the BRAINLIESTExplanation:FOLLOWING are some rules and conventions for declaring IDENTIFIERS: A VALID IDENTIFIER must have characters [A-Z] or [a-z] or numbers [0-9], and underscore(_) or a dollar sign ($). for EXAMPLE, @javatpoint is not a valid identifier because it contains a special character which is @. |
|