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
How do you differentiate between cobol and cobol-ii?
how to move the records from file to array table. give with code example
Write a program that uses move corresponding.
How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)
Why did you choose to work with ibm mainframe cobol programming?
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
i want to learn mainframe..any websites and material to learn from basic..? my mail id : rajeswaribe2010@gmail.com
A table has two indexes defined. Which one will be used by the SEARCH?
write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?
how do you reference the rrds file formats from cobol programs
In which area will you utilize 88 level items in cobol?
2 input fles: 2 flat files, with different number of records. both are having unique key for each record and already sorted in ascending order . match these files using unique key and in output only matching key value has to be written. please procide cobol logic
Why is it necessary that file needs to be opened in I-O mode for REWRITE?