What does EXIT do ?
Answers were Sorted based on User's Feedback
Answer / mahathiaz
Does nothing ! If used, must be the only sentence within a
paragraph
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / mdvasanth86
What Mahathiaz said it true.
However, I would like add that it can be combined with other
statements in the Paragraph with the recent version of cobol.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vampire
It is a scope terminator for Paragraph
ex
00001-main-para
000003-perform disp-para.
stop run.
000003-perform disp-para.
display"kiran".
exit
| Is This Answer Correct ? | 0 Yes | 2 No |
input:-AABBCCDDEFGHIIJ output:- ABCDEFGHIJ Here in input we hav the duplicate characters i.e repeating characters.SO we should eliminate the duplicate characters and should display the output in ascending order.
01 xxx pic 9(4). 01 yyy pic 9(6). move 123456 into yyy. move yyy to xxx. display yyy. what would be the value of yyy
What is the use of LINKAGE SECTION?
What is the difference between comp and comp-3?
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 ?
SUPPOSE I HAVE 60 CHARACTERS STING. IN THAT I WANT FIND OUT HOW MANY TIMES 'A'(ASSUME)WILL REPEATED AND I HAVE TO PASS 'E' IN PLACE OF 'A'ALONG THAT STRING.
If there are two copybooks which have same variables and we are using both the copybooks in our program. will there be an error and if i move values to the variable which copybook varibales gets the values i move in.
where will u code file status ?
01 a pic x(4) value 'abcd' 01 b pic 9(3) can we move from a to b.if possible what would be stored in b.
What is the default value of DISP parameter?
Can anyone tell me how to handle the array beyond the limit. If we have an array or a table which can handle 5000 records but now we have to compensate 20000 records with the same array? how to handle the situation.
What is binary search?