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

What are the different data types in cobol?

801


how to access the file from prodution from changeman tool and to submit a file to production

6692


Define static linking and dynamic linking.

669


What are all the divisions of a COBOL program?

667


Have you used the sort in your project?for this type of questions any working on real time project give the eg. with real time scenario.

2064






What is link edit in cobol?

778


In which area will you utilize 88 level items in cobol?

724


In COBOL programming, what is PERFORM? What is VARYING?

674


State the various causes of s0c1, s0c5 and s0c7.

665


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.

934


What is the LINKAGE SECTION used in COBOL?

895


) How do u handle errors in BMS macro

1513


What is the difference between PIC 9.99 and 9v99 in COBOL?

737


Explain how you can characterize tables in cobol?

644


example for sub strings ? and refernce modifications whit output pls

1848