What guidelines should be followed to write a structured cobol prgm?
No Answer is Posted For this Question
Be the First to Post Answer
I need to compare two VSAM files, both having 'number' as key. If there is a matching record, write the data into another VSAM file. How will it be possible.
what is the difference between implicit and explicit scope terminator with example?
How to read records in reverse order in flat file? I know we can do it by reading all records into an array.... Then read records in reverse order by using subscript or index but can any body give me the exact code.
What is the maximum length of a field you can define using COMP-3 in COBOL?
what is the difference between Normal vaiable and comp variable.
Syntax for JCLLIB & JOBLIB???
SUPPOSE I HAVE 60 CHARACTERS STING. IN THAT I WANT FIND OUT HOW MANY TIMES 'A'(ASSUME)WILL REPEATED AND I HAVE TO PASS 'E' IN PLACE OF 'A'ALONG THAT STRING.
How to covert given string into ASCII value in COBOL/MF COBOL
input:- 12233344445555566666... output:- 1=1,2=4,3=9... Here firstno i.e 1 should be displayed and after that the alikeno.s should be added n displayed.i.e 2+2=4 like tat it goeson.
suppose there is one PF having two members PF1 PF2.PF has one unique key Emp ID.could you tell me uniqueness in PF will be effective across members as well ? assume emp iD 3333 is in member PF1 would same Emp id be exist also in member PF2 ?
Can you call an OS VS COBOL pgm from a VS COBOL II pgm ?
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.