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
can you please let me know if there is any walkins for COBOL/PLI/DB2/IMS/JCL in pune other than IBM and ITC infotech
Have you used comp and comp-3 in your project? And how?
What are 77 levels used for?
Write a program to explain size error.
how we sort two input files based on a common column and giving one o/p file please send me the coding logic?
Is it possible that the redefines clause has different picture clauses compared to the one it redefined?
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.
what is the use of outrecord?
How do u write test cases?
What are the different types of condition in cobol and write their forms.
How to know whether the module is dynamical or statistical?
Name some of the examples of COBOl 11?
What is the utilization of copybook in cobol?
Explain how to differentiate call by context by comparing it to other calls?
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