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

Answer # 3 is correct

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how do you reference the variable block file formats from cobol programs

688


Are you comfortable in cobol or jcl?

643


What are 77 levels used for?

659


here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?

6833


Define cobol?

864






How to print 10 to 1 if the input have only 10 digit number?

811


Which mode is used to operate the sequential file?

669


What is perform what is varying?

711


Which Search verb is equivalent to PERFORM…VARYING?

687


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

807


What is the difference between perform … with test after and perform … with test before?

883


What is the utilization of copybook in cobol? Could we utilize a similar copybook?

720


What type of SDLC u followed? Why?

1520


Explain how you can characterize tables in cobol?

638


what is the difference between COBOL2 AND COBOL390?

2453