Multiple choice technology programming languages

The maximum length of a literal in REXX is ?

  1. 32

  2. 33

  3. 255

  4. 251

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

In REXX, the maximum length of a literal string is 255 characters. This limit applies to string literals enclosed in quotes. The 32 and 33 options are too small, and 251 is incorrect. This 255-character limit is a built-in constraint of the REXX interpreter for string literals to maintain compatibility and performance.