Answer:
Attempts to modify the value of a variable defined const are caught at execution time
Step-by-step explanation:
The false statement among the options is Attempts to edit the value of a variable defined const are caught at execution time while other options are true.
A const variable should not be modify because the main reason of having a const variable is not to make modifying it possible. If you prefer a variable which you may likely want to modify at some point, then don't just add a const qualifier on it. Furthermore, Any code which modify's a const by force via (pointer) hackery invokes Undefined Behavior