if a>b
continue
display x.
dispaly y.
end-if
display 1
display 2.
display 3.
what should be my output ?
Answer Posted / sharpmainframe
ERROR: BECAUSE OF MISMATCH END-IF
YOU NOT PUT ANY SCOP TERMINATOR(.) INBETWEEN IF-ENDIF STMT
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
how do you reference the rrds file formats from cobol programs
What is the use of intialize verb?
What is length is cobol?
How do you code cobol to access a parameter that has been defined in jcl? And do you code the parm parameter on the exec line in jcl?
How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)
Define static linking and dynamic linking.
Is it possible that the redefines clause has different picture clauses compared to the one it redefined?
How do you differentiate between cobol and cobol-ii?
What is the difference between binary search and sequential search?
) How do u handle errors in BMS macro
What is amode(24), amode(31), rmode(24) and rmode(any) (applicable to only mvsesa enterprise server) ?
What are the cobol coding sheets?
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
) how do u code after getting data?
I have one ps file in which there are 3 fileds emp_no,emp_name and leave_app.this ps file information give the detail of employee which is going to apply for leave.suppose emp_no=113430,emp_name=ajay,leave_app=1 that means he is going to apply for 1 day leave.and accordingling the table in db2 will be updated means if he has that no of leave in his account then he will get dat leave and updated acc. in table(leave_balance=previous leave present in table-leave_app).Now i want to check whther the updated result is correct or not by comparing the two ps file using IEBCOMPARE or icetool so what is going to be the two ps file and how its is going to be compare.