int CONTACT_ID = 10; // weird if it's meant to be reassigned later
// elsewhere
int x = CONTACT_ID;
If I saw this after the initial definition: CONTACT_ID = 20;
I'd be very confused as to why they chose to shout the name when that, by convention, marks it as a constant but are now assigning to it.Choose to communicate poorly at your own peril. Naming conventions (including these typographical elements like capitalization and case style) are how you communicate with other people.
All other use of CAPS is dependent on the language and it's naming convention.
One does not simply write like preferred.
Why you ask?