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 / dharma
it will display 2 3 4 only
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
EXPLAIN MAIN FRAME TESTING PROCESS...HOW TO FIX THE MAINFRAME BUGS?
I have a File that has duplicate records. I need only those records that occur more than thrice.?
What is the difference between PIC 9.99 and PIC9v99?
What is the default value(s) for an initialize and what keyword allows for an override of the default?
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
What is amode(24)?
What is link edit in cobol?
i need a small 3d program using inline and outline.
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning
What is the utilization of copybook in cobol?
How do you reference the fixed block file formats from cobol programs
How did the release of cobol/370 version 1.3 improve the performance of release 1.1?
how do you reference the rrds file formats from cobol programs
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.