The target of an assignment statement should be
-
l-value
-
2-value
-
r-value
-
m-value
A
Correct answer
Explanation
In programming languages, an l-value (locator value) refers to a memory location that has an address and can appear on the left side of an assignment statement. The target of an assignment must be an l-value because it needs to specify where to store the value. r-values represent actual data values and appear on the right side.