Why do we use constant variables?

To avoid having “magic numbers” in our code

To give values a readable name, so that their purpose is clear

To let us easily change the behavior of our program by only having to change a value in one place

All of the above

All of the above.