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 / suputhru
Correct answer is the 1 2 3 4.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are various search techniques in cobol? Explain.
What are declaratives and what are their uses in cobol?
please..could u give an example about USAGE IS POINTER ..and explain why and when we use it ?
What is perform what is varying?
Which is the default, TEST BEFORE or TEST AFTER for a PERFORM statement?
Define cobol?
What is the difference between goback, stop run and exit program in cobol?
how do you reference the rrds file formats from cobol programs
EXPLAIN MAIN FRAME TESTING PROCESS...HOW TO FIX THE MAINFRAME BUGS?
Write a program to explain size error.
What type of SDLC u followed? Why?
A table has two indexes defined. Which one will be used by the SEARCH?
State the various causes of s0c1, s0c5 and s0c7.
what is s000 u4087 error? please give the all error codes in cobol,jcl.
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?