1. Appian Documentation: Expression Rule Best Practices. In the section "Readability and Maintainability," the documentation explicitly states:
"Use descriptive variable names: Use local variables with descriptive names to represent complex or unintuitive logic."
"Use camel case for local variables (for example, local!firstName)."
"Avoid single-letter variable names, except for loop counters."
These points directly support option B while refuting options A and C.
2. Appian Documentation: Appian Designer Best Practices. In the section "Create Maintainable Applications," the guide emphasizes that "Applications should be built so that they are easy to understand, enhance, and maintain over time." Using clear and descriptive variable names as described in option B is a fundamental aspect of achieving this maintainability.