What are the different types of condition in cobol and write their forms.
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between static and dynamic call in cobol?
how can we find total no of records in a file ....is there any utility......?
if someone is using my file,how can i find which user id is using?
can we use the two 01 level in file discription ?
which is better either static call or dynamic call? and why?
Can 88 level variable be declared in FD section..?
What is diff between vsam and db2?what is advantage of db2 over vsam?which is best suited one?
How can we pass data from cobol to JCl?
i have a file which contains records like 10,30,90,50,20,40,80,60,70 i want to display these records in reverse order like 70,60,80,40,20,50,90,30,10 please give me the cobol code (do not sort the records)
3 Answers Cap Gemini, Mind Tree,
What is level 66 used for ?
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
When and how can we use index & subscript ?