consider the following two IF statements:
IF X AND NOT Y MOVE A TO B
IF Z=1 OR 9 MOVE A TO B
select one of the following data divusion entries which
gives identical
results for both the above IF statements
a.01 Z PIC 9
88 X VALUE 1.9
88 Y VALUE 0.2 THRU 8
b.01 Z PIC 9
88 X VALUE 0.2 THRU 8
Y VALUE 1.9
c.01 Z PIC 9
88 X VALUE 1.9
88 NOT-Y VALUE 0.2 THRU 1.9
d.none of yhe above
Answer Posted / rama krishna
d
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How you can characterize tables in cobol?
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?
Discuss about changing dataset name in proc.
What rules are to be followed while using the corresponding options?
) How do u handle errors in BMS macro
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?
What is the utilization of copybook in cobol?
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
Why did you choose to work with ibm mainframe cobol programming?
How many sections are there in data division in COBOL?
What type of SDLC u followed? Why?
What is Pic 9v99 Indicates in COBOL?
What are various search techniques in cobol? Explain.
What is the default value(s) for an initialize and what keyword allows for an override of the default?
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.