what happens if parmparameter passes zero bytes to the program
No Answer is Posted For this Question
Be the First to Post Answer
Write some characteristics of cobol as means of business language.
what happens when a copybook variables are declared using include statement ?
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
How to read records which is in sequential file in reverse order ? Exp. 1 2 3 4 5 . i want 5 4 3 2 1?please clear my doubt any one
input:-AABBCCDDEFGHIIJ output:- ABCDEFGHIJ Here in input we hav the duplicate characters i.e repeating characters.SO we should eliminate the duplicate characters and should display the output in ascending order.
how can we fetch 3 records in cobol pgm any coding pls ?
consider the following two statements MOVE 10 TO N PERFORM PARA-X N TIMES STOP RUN PARA-X MOVE 5 TO N how many times PARA-X willbe exicuted? a.10 b.5 c.infinate d.execution error
Can anybody give me example of subscript and index
What is the problem of ordered sequential files access?
There are two flat files one having 10 records and other having 5 records. write a cobol pgm to find the duplicate records(matching records)from both files.
What is the difference between Perform para and perform asaection in cobol?
What is report-item?