how do you reference the esds vsam file formats from cobol programs
No Answer is Posted For this Question
Be the First to Post Answer
01 var1 pic x(10) 01 var2 redefines var1 pic 9(10). then in procedure division move 'abcde' to var1 then waht is the value of var1 and var2
1.What is the default print format in cobol?
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
Minimum how many Number of Paragraphs are there in ID- Divison?
In which area will you utilize 88 level items in cobol?
how do you move only numeric data from A to B 01 A pic x(10) value 'a1b2c34d5e'. 01 B pic x(5).
what is ASRA, AEY9?
What is "Call by content" and "call by reference"?
Q:what is the difference between the variable length and fixed lenght.how it varies in the cobol.
What is the LINKAGE SECTION used in COBOL?
What are the pertinent COBOL commands?
In file1 have 80 records are like d1,d2,d3......D80. File2 have 1000records are like a1d1,a1d2,a3d3.....Etc. I want matching records in file3 ? Plse tell me the matching logic???I want answer only in cobol ?Not using any tool or jcl?