What is an identifier? what is …
CBSE, JEE, NEET, CUET
Question Bank, Mock Tests, Exam Papers
NCERT Solutions, Sample Papers, Notes, Videos
Posted by Gaurav Meena 6 years ago
- 1 answers
Related Questions
Posted by Gowri Menon .Menon 6 months, 1 week ago
- 0 answers
Posted by T Kumaran 7 months, 1 week ago
- 0 answers
Posted by Abi S 8 months, 2 weeks ago
- 0 answers
Posted by Anchal Ratna 10 months, 2 weeks ago
- 1 answers
Posted by Anshika Maurya 5 months, 2 weeks ago
- 0 answers
Posted by Account Deleted 10 months, 2 weeks ago
- 1 answers
Posted by Jaspreet Sethi 6 months, 2 weeks ago
- 0 answers
Posted by Samyak Jain 8 months, 3 weeks ago
- 0 answers
Posted by Gopall Mahato 5 months, 4 weeks ago
- 0 answers
myCBSEguide
Trusted by 1 Crore+ Students
Test Generator
Create papers online. It's FREE.
CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
Gaurav Seth 6 years ago
Identifiers or User Define Words:-
Identifiers will be used as class variables methods etc while naming the identifiers or user define words remember the following paths-
1. Keywords cannot be used as identifiers.
2. Identifier must not start with any numeric or it is always recommendable to starts some of the identifiers with small case.
3. It must not contain any special symbol other than (_ or $).
4.Identifier must not contain any blank space in between.
5.Identifiers may contain numeric but it should not be in starting.
For e.g. –
int ab; //ok
int a_b; //ok
int a b; // not ok
class Hello{
int a;
int ab;
1Thank You