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
Answer Posted / talluri
01 ws-array
05 ws-table1 occurs 10 times.
05 ws-table2 occures 10 times.
01 i pic 9(2).
01 j pic 9(2).
procedure division.
perform varing i from 1 by 1 until i>10
perform varing j from 1 by 1 until i>10
accept ws-table1(i,J)
accept ws-table2(i,J)
end-perform
end-perform.
perform varing i from 1 by 1 until i>10
display ws-table1(i,J)
end-perfrom.
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
) what is the difference between AID and HANDLE AID?
What are the rules of the move verb?
What is rmode(any) ?
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.
Write the code to count the sum of n natural numbers.
What do you understand by psb and acb?
explain sorting techniques in cobol program?
What is cobol?
What is the compute verb? How is it used?
Name the sections present in data division.
How do you reference the fixed block file formats from cobol programs
Which is not true about evaluate statement
Explain how you can characterize tables in cobol?
Can you please let me know the centre name of INS certification in Kolkata.
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning