Multiple choice technology mainframe

QUEUE 'MINDWORKS' QUEUE 'MINDWORKS' QUEUE 'MINDWORKS' x=QUEUED() What is the value of x?

  1. MINDWORKSMINDWORKSMINDWORKS

  2. 3

  3. Null

  4. QUEUED is not a REXX keyword

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

QUEUE adds items to a stack, and QUEUED() returns the count of items. After three QUEUE 'MINDWORKS' operations, the stack contains 3 items, so x=3. QUEUED() is a valid REXX built-in function. The string concatenation result and Null are incorrect - QUEUED returns a numeric count, not the stacked content.