mainframe Online Quiz - 148
Description: mainframe Online Quiz - 148 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: mainframe |
Identify the mandatory info required to access uncatalogged dataset?
Which utility can be used to find volume serial info of a datset?
What is sqlcode -922 Error?
whats SDSF?
Identify which one is more opt for DBRM?
Identify which one is correct?
identify which one is correct?
A REXX program (or REXX EXEC) called DEMO is stored in the partitioned dataset TBISUSR.REXXCRS.EXEC. Execution is possible...
Indicate what is not correct in a REXX program.
Complete correctly: When defining a variable in REXX, one can use up to 250 characters to name the variable. The initial value will be...
Consider the following: name = 'John' number1 = number2 number2 = 5 Which of the following REXX expressions will generate an error?
Consider the following clauses: var_1 = 2 var_2 = 3 IF var_1 = var_2 THEN var_3 = var_1 var_4 = var_2 var_5 = var_2 + var_1 ELSE var_3 = var_2 var_4 = var_1 var_5 = var_2 - var_1 SAY "result = " var_3 var_4 var_5 What will happen when this REXX is executed:
Complete correctly: The EXIT clause ends...
Indicate the correct statement: REXX functions consist of a function name, immediately followed by its arguments coded between parentheses and separated by commas.
Given that var_1 = 'Abc123', what is the result of DATATYPE(var_1,N)?
What is the result of TRUNC(12.3456,3)?
Complete correctly: When calling a subroutine with the clause CALL 'SUBROUT1',...