Computer Science, asked by prajjwalpandey21jan2, 5 months ago

Write any two valid identifiers which can be used in Java programming. ​

Answers

Answered by BrainlyProgrammer
2

Answer:

identifiers can be any thing it can be a class name, function name, variables names

Example:

Class test

int ch=1;

Explanation:

Answered by sanaks105
0

Answer:

• each identifiers have at least one character

• the first character must be picked from : alpha,underscore,or dollar sign. The first character can be a digits.

• The rest of characters ( besides the first ) can be from : alpha,digit,underscore,or dollar sign.

Similar questions