Multiple choice technology mainframe

what is the maximum size of literal in REXX

  1. 8

  2. 30

  3. 250

  4. 251

  5. 125

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

REXX limits literal strings to 250 characters maximum. This is a well-defined language constraint. While other limits exist (like variable name length), the 250-character limit for string literals is the classic REXX limitation programmers must remember.

AI explanation

In classic REXX, a literal string (and variable value) is limited to a maximum of 250 characters. This limit is documented across REXX language references and mainframe REXX guides. The value 251 is simply an off-by-one error and not the documented limit.