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 / rajeumesh
Answer # 3 is correct
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the difference between comp and comp-3?
I have a File that has duplicate records. I need only those records that occur more than thrice.?
What are the different rules of SORT operation?
What is the difference between comp and comp-3 usage?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
What is the Purpose of Pointer in the string?
what is search and searchall?what is the diffrence between them?give an best example?
Write the code to count the sum of n natural numbers.
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?
How many bytes S(8) comp field occupy and its maximum value?
Why occurs cannot be used in 01 level in COBOL?
If you are current on the owner of a set, what is the difference between an obtain next and obtain first? Actually in which topic will we use dis???Plz explain it clearly
How do you reference the following file formats from cobol programs?
input= ,,,, mainframe training ,,, hyderabad .... location.... output1=$ mainframe training in hyderabad location$ output2=**** mainframe training in hyderabad location ****. In this pgn when we give input considering the spaces the output is displayed in this format.Like in the place of ,,,, $ should be displayed likewise.So please helpmeout.
what is the use of outrecord?