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
What are literals?
how to refer the data field?
how do you reference the variable unblock file formats from cobol programs
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
What are declaratives and what are their uses in cobol?
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
What is the default value(s) for an initialize and what keyword allows for an override of the default?
What is difference between static and dynamic call in cobol?
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?
how to convert the recors form vsam file to db2 table tru file aid
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
Name the sections present in data division.
What is the difference between next sentence and continue in cobol programing language?
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning
How do u write test cases?