If A>B
next sentence
end-if
display 1
display 2.
display 3.
If a>b, it will display only 3.(the next sentence,
ie., after fullstop/period)
____________________________________
if a>b
continue
end-if
display 1
display 2.
display 3.
If a>b, it Will display 1 2 3 (the next statement)
____________________________________
if a>b
continue
display 1
end-if
display 2
display 3.
display 4.
If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?
Answer Posted / suputhru
Correct answer is the 1 2 3 4.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
System Testing for Mainframe Developers What is System Testing? integration testing ? what's the procedure ..
What are the pertinent COBOL commands?
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.
What is the utilization of copybook in cobol? Could we utilize a similar copybook?
What is the difference between PIC 9.99 and PIC9v99?
explain sorting techniques in cobol program?
How do you reference the following file formats from cobol programs?
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
What is difference between static and dynamic call in cobol?
Can we change the password using ALTER? anyone tried and changed?
In COBOL, what is the different between index and subscript?
What is a report item?
What are declaratives and what are their uses in cobol?
if we have " ibm mainframe ",in that how to remove first and last leading space eg:"ibm mainframe" like that the answer we need
Whats the difference between search & search ALL?