how to refer the data field?
If you were passing a table via linkage, which is preferable - a subscript or an index?
which one is the best of com and com-3.using of real time ?
I have files that contains both duplicates files(occur more than twice) and non-duplicate files.The file is already sorted by a key.I want to determine those records that are duplicate and will be move to a duplicate file and non- duplicate files to be move to a valid file.thank you.help please
What R 2 of the common forms of the EVALUATE STATEMENT ?
Re: 01 NAME1 PIC X(13) VALUE "COBOL PROGRAMMING". 01 NAME2 PIC X(13). now I want to display the value of NAME1 in reverse order i.e value should be displayed as "GNIMMARGORP LOBOC" HOW can I do that ??? please let me know if any one knows it.
which is faster either static call or dynamic call ? and specify the reasons for it ? reply fast
.How to add one input & one Out file in existing cobol program. how approach tell me step by step.
How do you code Cobol to access a parameter that has been defined in JCL?
1) can we display the index?
I have a field with data type X(10). I want to perform arithmetic operation on this field? I tried doing it by moving the value into a numeric field. but it didn't work out. I am getting a S0C7 abend. Pls let me know if there is any way of getting this done?
Under which scenario you would go for a static call as opposed to dynamic call?
consider two data items 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