1.

Define symbolic constant with one variablein java​

Answer»

What are symbolic constants in JAVA?Symbolic constants in Java are named constants.We use the final keyword so they cannot be reassigned a new value after being declared as final.They are symbolic because they are named. Here are a couple examples of symbolic CONSTANT variables.final INT MAX_THREADS = 20; final int MAX_USERS = 40; final int MAX_SESSIONS = 50;



Discussion

No Comment Found