Multiple choice technology programming languages

Suppose 'ab' is a variable,how it is represented in M204 ?

  1. %%ab

  2. $ab
  3. %ab

  4. ab

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

In M204, variables are typically prefixed with a percent sign (%). A variable named 'ab' would be represented as %ab. The %% notation is not standard, and $ prefixes are used in different systems (like shell scripts).