How many bytes will be allocated for the following record
description
entries?
01 REC-A.
05 A PIC S9(4).
05 B PIC XXXBXXX.
05 C PIC ____9.99.
05 D PIC S9(5) COMP-3.
05 E PIC 9(3) COMP.
Answer Posted / anil
23 bytes
| Is This Answer Correct ? | 0 Yes | 6 No |
Post New Answer View All Answers
2 input fles: 2 flat files, with different number of records. both are having unique key for each record and already sorted in ascending order . match these files using unique key and in output only matching key value has to be written. please procide cobol logic
How can we find that module can be called – whether DYNAMICALLY or STATICALLY?
What are the different rules for performing sort operation?
Which division and paragraphs are mandatory for a COBOL program?
What do you understand by psb and acb?
Write a program that uses move corresponding.
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.
Mention the guidelines to write a structured cobol program?
What rules are followed by the search verb.
In which area will you utilize 88 level items in cobol?
What is perform what is varying?
What is the difference between structured cobol programming and object alternativelyiented cobol?
How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)
What is the default value(s) for an initialize and what keyword allows for an override of the default?
Explain how will you differentiate between an internal and an external sort, the pros and cons, internal sort syntax etc