What is amode(24), amode(31), rmode(24) and rmode(any) (applicable to only mvsesa enterprise server) ?
Answer / Shish Ram
In COBOL, 'Amode' stands for Auxiliary Mode, which controls the size of various areas used by the program. Specifically, amode(24) and amode(31) set the size of the Work Area to 24 and 31 characters respectively. 'Rmode' stands for Record Mode, which determines how data is read from and written to files. rmode(24) sets the record length to 24 characters. rmode(any) allows the program to handle records of varying lengths.
| Is This Answer Correct ? | 0 Yes | 0 No |
How can we find out wether to declare the data items like Integer, Char,Comp? If comp types how can we decide wether it is Comp and Comp3.How it is? Please Explain... Cheers.
HOw can I get the negative sign while deduct high value from low value
What should be the sorting order for SEARCH ALL?
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10
how would find total records in files using seqientional
what is the default print format? in cobol
How to resolve the soc4 and soc7 errors?
What is difference between static and dynamic call in cobol?
I have a files containing both duplicate and non-duplicate records.The file is already sorted by a key.I want to determine those records that are duplicate and records that are non-duplicate.If duplicate the record is move to a duplicate file and if non-duplicate that will be move to valid file.thank you
Hi All, how is sign is stored in S9(17) comp-3 variable. Answer with an Example will be of great help.
wht is the difference between goto and perform stmts
How do you define a table/array in COBOL?