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 / sakthi kumar
Actually Continue is a do nothing statement, so it will
proceed as it is.
It will display 1 2 3 4
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Why would you use find and get rather than to obtain?
How you can characterize tables in cobol?
Which is not true about evaluate statement
What is a scope terminator give example?
Differentiate cobol and cobol-ii. (Most of our programs are written in cobolii, so, it is good to know, how, this is different from cobol)?
Can a Search can be done on a table with or without Index?
What is the problem of ordered sequential files access?
What are the different types of condition in cobol and write their forms.
How do u write test cases?
What is length is cobol?
HOw can I get the negative sign while deduct high value from low value
Explain the configuration section of a cobol program with examples of syntax.
What is the difference between binary search and sequential search?
Write a cobol program making use of the redefine clause.
What is difference between static and dynamic call in cobol?