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 / dharma
it will display 2 3 4 only
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
) How do u handle errors in BMS macro
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
What is inspect in cobol ?
What is the Purpose of POINTER Phrase in STRING command in COBOL?
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
Explain how will you differentiate between an internal and an external sort, the pros and cons, internal sort syntax etc
input 1 input2 ouput1 output2 output 3 1 re 300 1 re 200 1 re 300 3 rc 500 1 re 200 2 rr 400 1 re 300 2 rr 400 1 rc 400 3 rc 500 1 rc 400 2 rr 700 2 rr 700 5 tt 900 5 tt 900 2 inputs r in flat file and output 1 is matched records,ouptput2 is unmatched of input1,output3 is unmatched of input2! how vl u get the output files using sequential order and to check with each and every records! let me know the procedure division ?
What do you understand by psb and acb?
If you are current on the owner of a set, what is the difference between obtain next and obtain first?
What is rmode(24)
Whats the difference between search & search ALL?
How do u write test cases?
What are the different types of condition in cobol and write their forms.
What are the rules of the move verb?
What is the default value(s) for an initialize? What keyword will allow for an override of the default?