What are the cobol coding sheets?
No Answer is Posted For this Question
Be the First to Post Answer
suppose a cobol programme A calling programme B,C and D. If C undergoes some change what if A,B,C,D need to be recompiled or only C nee to be recompliled.
. How do we cast a variable in COBOL
In a COBOL program, 2 tables TABLE1 and TABLE2 are defined that are indexed by INDEX1 and INDEX2 respectively. Can we use INDEX1 with TABLE2 and INDEX2 with TABLE1?
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
i declare a Table as OCCURS 2000 TIMES.If the input file has more than 2000 records will the COBOL program fail?
s9(18) comp-3:: What is the size of memory it takes internally?
Write a program that uses move corresponding.
how to display date in reverse order if the pic clause of the is numeric suppose date is 09032010 ==> need to print in 20100309 (pic clause is numeric)
Write some characteristics of cobol as means of business language.
How can i write a comp-3 variable into a sequential file should i declara the field in the file description as comp- 3?
Which is not true about evaluate statement
is this below syntax correct? CALL 'subprg' using A,B Please help