Explain how you can characterize tables in cobol?
what do you mean by copybook? and what is the difference between the copybook which we are using in working storage and procedure division.
what is difference between cobol and cobol/400
Explain how will you differentiate between an internal and an external sort, the pros and cons, internal sort syntax etc
Explain call by context by comparing it to other calls.
What is the problem of ordered sequential files access?
can we use reference modification an arry.
How do u initialize an array?
how to transfer the file from pc to mainframe??
how will u retreive value from a table.write it with syntex. 01 ws-table 05 ws-table1 occurs 10 times. 05 ws-table2 occurs 10 times. the above is 2 dimensional array..how will u retrieve 1st element of an array
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
We know that size of redefine and redefining need not to be same..Then does the below case true 01 ws-date pic 9(6). 01 ws-redf-date REDEFINES ws-date 05 ws-year pic 9(4) 05 ws-mon pic 9(2) 05 ws-day pic 9(2)
How can you declare the file ?