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
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
Program A (Normal COBBAT) calling a B Program (DB2COBOL, COBBATDB which is using a VSAM file. its a dynamic call. How we will handle VSAM file decleration in our from JCL from where we are running A PGM. And should we have PLAN for A pGM also. if possible can some one post a sample JCL. Thanks for help in advance.
IF I mention stop run in CICS what happens?
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
What is a SSRANGE and NOSSRANGE?
Write some characteristics of cobol as means of business language.
Define cobol?
how do you define single dimensional array and multidimensional array in your 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?
What guidelines should be followed to write a structured cobol prgm?
What is the utilization of copybook in cobol?
What are different data types in cobol?
What is the usage of comp fields in cobol?
1.give the details about WHEN OTHER. 2. how many form are available in evaluate.
Explain the configuration section of a cobol program with examples of syntax.