Tag: technology
Questions Related to technology
-
... via the TSO command: EXEC 'TBISUSR.REXXCRS.EXEC(DEMO)' EXEC, without any
-
... only after allocation of the partitioned dataset TBISUSR.REXXCRS.EXEC to the DD
-
... via the TSO command: CALL 'TBISUSR.REXXCRS.EXEC(DEMO)', without any additional
-
... only after compilation to COBOL, and via the TSO command:
-
A REXX clause can be coded in uppercase, lowercase or mixed case.
-
Multiple instructions can be coded on 1 line, as long as they are separated by a ','
-
A REXX program should start with a comment clause /* REXX */
-
Continuation of REXX instructions is achieved by using a ',' as a continuation indicator
-
all blanks
-
NULL value
-
name of the variable in the same (mixed) case as the name.
-
name of the variable in uppercase
-
10 / number1
-
name || 'number2'
-
number2 * 3
-
name > number2
-
output on the terminal: result = 2 3 5
-
output on the terminal: result = 3 2 1
-
output on the terminal: result = var_3 var_4 var_5
-
the program will terminate with an error
-
Ia loop unconditionally and continues with the next clause after the loop
-
IF var_1 = var_2 THEN var_1 = var_1 + a loop and EXEC unconditionally, but doesn't return to the caller of the EXEC.
-
a loop and EXEC unconditionally, returns to the caller of the EXEC and provides a return code.
-
a loop and EXEC unconditionally, returns to the caller of the EXEC, but doesn't provide a return code.
-
This is only true if there are arguments, otherwise the parentheses must be excluded.
-
This is also true if there are no arguments, but the parentheses can be omitted.
-
This is also true if there are no arguments, the parentheses must be included.
-
This is always true, since there are no functions without arguments.