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
what happens if parmparameter passes zero bytes to the program
Name the divisions, which are available in a cobol program?
Define static linking and dynamic linking.
i want a program using by if, evaluate , string, unstring, perform, occurs?
What are all the divisions of a COBOL program?
How do you reference the following file formats from cobol programs?
State the various causes of s0c1, s0c5 and s0c7.
What are the different rules to perform a Search?
How can you get the ksds file records into your cobol program?
Name the sections present in data division.
explain sorting techniques in cobol program?
) what is the difference between AID and HANDLE AID?
What are the pertinent COBOL
Write some characteristics of cobol as means of business language.
how do you define single dimensional array and multidimensional array in your cobol?