wht is the use of evalute verb ? how do u declare recfm in cobol and jcl ?
Answer Posted / kaarthik
Just to add to the already given answers,
Evaluate is mainly used to eliminate the use of Nested-if's
this is introduced as part of VS-COBOL 2 .
As for REC-FM,
While defining the file in COBOL,
Give RECORDING MODE IS F
In JCL, Give DCB=(RECFM = FB,LRECL=XX,BLKSIZE=xxx)
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is a report item?
How do you define a variable of comp-1 and comp-2?
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
Write some characteristics of cobol as means of business language.
What kind of error is trapped by on size error option?
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
Write a program to enter and display the names of students in a class using the occurs clause.
What is link edit in cobol?
What is the problem of ordered sequential files access?
How do you get the data to code the BMS macro?
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
What are the different rules for performing sort operation?
What is rmode(any) ?
if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.
What is an in line perform? When would you use it? Anything else you wish to say about it.