Chapter 5: Problem 20
What is a global constant? Is it permissible to use global constants in a program?
Short Answer
Expert verified
Answer: A global constant is a variable or object that is declared outside of any function or class and is accessible to any part of the code. Its value cannot be changed once initialized. Yes, it is permissible to use global constants in a program as they provide consistent values across the whole program, improve code readability, and maintainability. However, when their usage is limited to a specific scope, it is best to use local constants within functions or namespaces instead of global constants.