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 / kamal

if a>b
continue
display 1
end-if
display 2
display 3.
display 4.
it will disply 1,2,3,4.

Is This Answer Correct ?    2 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is it possible that the redefines clause has different picture clauses compared to the one it redefined?

676


In COBOL, what is the different between index and subscript?

759


How many sections are there in data division in COBOL?

678


I have to write to a outfile where the number of records in that file should be the header of that file using IMS.. can anyone help me in this issue

1932


i want a program using by if, evaluate , string, unstring, perform, occurs?

4061






what is amode(24), amode(31), rmode(24) and rmode(any)?

703


What is the difference between structured cobol programming and object alternativelyiented cobol?

755


What is difference between static and dynamic call in cobol?

777


How do get the result of your program directly on your pc?

1885


What are the cobol coding sheets?

664


How do we get current date from system with century in COBOL?

806


What are the different open modes available in cobol?

722


What is amode(31)

724


What is the difference between goback, stop run and exit program in cobol?

930


Explain what you understand by passing by value.

701