can we write paragraph in area B .....
Answers were Sorted based on User's Feedback
Answer / dhara
Area B: We mention only Executable statements of Cobol
| Is This Answer Correct ? | 17 Yes | 1 No |
Answer / o.v.chowdary
in area a we can declare divisions, sections¶graphs
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / santosh
no it is ot possible ,we can write only excecutable code in area B.Paragaph write in area A . Line no 12 onwards
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / guest
para name should begin in area A...
All the sentences under it will begin in area B.
| Is This Answer Correct ? | 2 Yes | 0 No |
Suppose a program has the following code. What will be the output? MAIN-PARA. DISPLAY 'MAIN-PARA' PERFORM SECTION-A. STOP RUN. SECTION-A. PARA-A1. DISPLAY 'SECTION A PARA A1'. PARA-A2. DISPLAY 'SECTION A PARA A2'.
If you were passing a table via linkage, which is preferable - a subscript or an index?
give the examples of strings in cobol
i have mainprogram and subgram...if i compile mainprogram without stop run..what will u get in compilation time?
What are options have been removed in COBOL 11?
what is the difference between occurs and occurs depending on? i dont think so there is the difference in storage..then why we should use occurs depending on?
HOW WE WILL SORT THE ARRAY WHICH IS GOING TO USE FOR SEARCH ALL?
Differentiate COBOL and COBOL-II?
Can we change the password using ALTER? anyone tried and changed?
01 a pic 9(6) value is 123456 01 b pic 9(3) move a to b wht will be the value ?
How to pass return codes from cobol to jcl?
Using string statement.Is coding three destination string from one source string possible in one code?or three codes for every destination string of one source string.?thank you