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 / kamal
if a>b
continue
display 1
end-if
display 2
display 3.
display 4.
it will disply 1,2,3,4.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
I have a File that has duplicate records. I need only those records that occur more than thrice.?
What is the compute verb? How is it used?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into cobol program?
What rules are followed by the search verb.
What is the difference between structured cobol programming and object alternativelyiented cobol?
How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)
How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?
What rules are to be followed while using the corresponding options?
What is the usage of comp fields in cobol?
Have you used the sort in your project?for this type of questions any working on real time project give the eg. with real time scenario.
what is search and searchall?what is the diffrence between them?give an best example?
What is amode(24)?
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
how do you reference the rrds file formats from cobol programs
What are INPUT PROCEDURE and OUTPUT PROCEDURE?