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

What are literals?

855


how to refer the data field?

1985


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

1000


can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there

2125


What are declaratives and what are their uses in cobol?

930


what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.

8667


What is the default value(s) for an initialize and what keyword allows for an override of the default?

952


What is difference between static and dynamic call in cobol?

1022


How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?

2337


how to convert the recors form vsam file to db2 table tru file aid

2980


If you are current on the owner of a set, what is the difference between an obtain next and obtain first? Actually in which topic will we use dis???Plz explain it clearly

2876


Name the sections present in data division.

897


What is the difference between next sentence and continue in cobol programing language?

947


Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning

865


How do u write test cases?

1816