Why 16 is used in calculating the DPRTY ?
as, DPRTY = (num1, num2),
THEN, DPRTY = 16* num1 + num2
Answer Posted / prachi
DRPTY is in Hexadeciamal..So to convert the value in
deciaml we need to multiply value 1 with 16 and then will
add value 2 in it
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
Which dd parameters are required?
What are the 4 fields in dd statement?
Is automatic restart possible in jcl? If yes, how?
Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?
What is the function of the steplib dd statement?
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
Is it possible to define dd statements as you want?
When output dataset space is required, what quantity categories are used?
Differentiate between addressing mode and run mode.
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
My Question is 1. How to cound no. of records in JCL. Please explain with an example. 2. How to execute only odd steps in JCL? I know EDIT TYPE = Inculde, Step Name = 1,3,5 and COND code for all even step. Anyone knows other than this.
Explain the function of the dd dcb keyword?
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
What methodology can be adapted to transfer data to a program that is coded using the exec statement?