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
Difference between cobol and cobol-ii?
What is the local-storage section?
Can we redefine the field of x(200) to less than 200?
What is the difference between perform … with test after and perform … with test before?
Differentiate between structured cobol programming and object-oriented cobol programming.
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning
How do get the result of your program directly on your pc?
What is the difference between goback, stop run and exit program in cobol?
Which is not true about evaluate statement
What are the different open modes available in cobol?
What is an in line perform? When would you use it? Anything else you wish to say about it.
What rules are followed by the search verb.
Name some of the examples of COBOl 11?