Multiple choice technology programming languages

we should avoid VALUE clause in programs for dynamic variables?

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

VALUE clauses should be avoided for dynamic variables because they are compile-time constants and cannot be changed at runtime. Dynamic variables need values assigned during program execution using MOVE or SET statements. Using VALUE clause on a dynamic variable creates a mismatch between compile-time and runtime behavior.