While running a JCL, what at is the abend thrown for time out?
(A) S322
(B) SB37
(C) S122
(D) SOC7
What is the syntax to Restart from a particular step in a Proc, but subsequent steps not to be executed. No NULL should be placed in Proc.
(A) RESTART= STEPNO
(B) RESTART=PROCNAME.STEPNO
(C) RESTART= STEPNO, COND=(0,LE)
(D) RESTART=PROCNAME.STEPNO,COND=(0,LE)
Which of the following is true about a VSAM file?
(A) Should have a Key of any length and anywhere
(B) Value of Records in Key should be in sorted order
(C) VSAM file cannot have a Total Length as Key
(D) Key should start only at first byte.
Suppose if the Variables A and B are declared as S9(7) and 9(7). Which of the below statement(s) violate COBOL rules.
(A) Compute A = A / 10
(B) Multiply B by 100
(C) Move 80 to B C
(D) Move 10 to A B.
Suppose if a Dataset is created with RECFM=FBA, and then if the same is browsed, what is the Total length observed.
(A) Total length declared
(B) Total Length declared – 1
(C) Total Length declared + 1
(D) None of the above
A KSDS VSAM has both data and index components. Is this statement
(A) True
(B) False.
NA
Na
Can a file declared in Cobol program be ran in Jcl without having it.
(A) Yes
(B) No
How do you check syntax of JCL without running it?
(A) JSCAN
(B) TYPERUN=SCAN on Job card
(C) TYPERUN=JEM on Job card
(D) (a) or (b)
VERIFY can be used for Empty datasets. Is this statement
Can a field X(10) be redefined with S9(12).