Which characters are allowed to use as the second character
of an identifier, and which characters are not allowed?

Answers were Sorted based on User's Feedback



Which characters are allowed to use as the second character of an identifier, and which characters..

Answer / vijayakumar chinnasamy

The Second letter may be
Alphabetic letters - a to z ot A to Z
Numerals - 0 to 9
Only special character $,_ and Euro currency symbols

Is This Answer Correct ?    2 Yes 0 No

Which characters are allowed to use as the second character of an identifier, and which characters..

Answer / ranganathkini

The following are the attributes of the character that is
part of a Java identifier but not as the first character:

* it is a letter
* it is a currency symbol (such as '$')
* it is a connecting punctuation character (such as '_')
* it is a digit
* it is a numeric letter (such as a Roman numeral character)
* it is a combining mark
* it is a non-spacing mark

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

Does substring create a new object?

0 Answers  


Differentiate jar and war files?

0 Answers  


What services that container provides?

2 Answers  


Can I import same package/class twice?

0 Answers  


Explain java heap space and garbage collection?

0 Answers  


Why is singleton instance static?

0 Answers  


Which class cannot be a subclass in java?

0 Answers  


What are the main features of java?

0 Answers  


When is an object in the mean to garbage collection?

3 Answers  


What is volatile data type?

0 Answers  


What is the Set interface?

2 Answers  


Can we override the private methods?

0 Answers  


Categories