Multiple choice technology programming languages

The meaning of 'X' after a literal in quotes/apostrophes in REXX is ?

  1. EBCDIC string

  2. ASCII string

  3. HEX string

  4. None of the above

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

In REXX, a literal string followed immediately by the letter 'X' or 'x' (for example, 'C1'X) tells the interpreter to treat the contents of the string as a hexadecimal representation. The letters 'B' or 'b' represent binary strings. ASCII and EBCDIC strings are not specified by a trailing 'X'.