Write down the divisions of cobol program?
No Answer is Posted For this Question
Be the First to Post Answer
I've one string with spaces ( I N D I A ). My question is I want remove the spaces & combine in to single string without space (INDIA).How we can write the cobol program & wich options we need to use. Please let me know.
If by mistake we MOVE a working storage variable into LINKAGE area. What will happen??
what is search and searchall?what is the diffrence between them?give an best example?
give the examples of strings in cobol
) what is the difference between AID and HANDLE AID?
wht is the difference between goto and perform stmts
How did the release of cobol/370 version 1.3 improve the performance of release 1.1?
01 ws-p pic 9(2). 01 ws-q pic 9(2) value 01. 01 ws-r pic 9(2) value 99. p.d. compute p = q + r what will be result of p ans(00) but my question is that how i got 10 on the place of 00. (truncation will ocuure on right side not left). please tell me ?
i have two file one is ksds another one is esds i want store matching records in flat file how to you matching.
Scenario: I have 3 Input Files.Read the first i/p file and depending on certain business logic, I want to read wither i/p file-2 or i/p file-3.Now, depending on certain business logic applied to the record read from either file-2 or file-3, I decide to write them to either output file-2 or output file-2. Question: How many job steps are necessary to implement a solution for the above.
how will u code parm parameter and where pls ?
consider the following PROCEDURE DIVISION entry OPEN EXTEND IN-FILE identify the correct statement a.organization of IN-FILE is sequential and records can be added in the beginning b.organization of IN-FILE is sequential and records can be added in the end c.organization of IN-FILE is indexed and records can be added in the beginning d.organization of IN-FILE is indexed and records can be added in the end