what is the minimum number of lines a Cobol program should
have to successfully compile and run
Answers were Sorted based on User's Feedback
Answer / milind
PROCEDURE DIVISION.
The above only line is enough to compile the code. I dont
agree with answer #1 and #2.
| Is This Answer Correct ? | 4 Yes | 7 No |
What is difference between COBOL and VS COBOL II?.
When the working storage variables get allocated? a.At Compile time b.At starting of the run time c.At end of the run time. d.None of these
consider the following two statements MOVE 10 TO N PERFORM PARA-X N TIMES STOP RUN PARA-X MOVE 5 TO N how many times PARA-X willbe exicuted? a.10 b.5 c.infinate d.execution error
how to transfer the file from pc to mainframe??
Why IBM?
What is the difference between PIC 9.99 and PIC9v99?
01 WS-NAME PIC X(10) OCCURES 2. by this we can get ws-name 2 times. My qustion is how can we access the second name
What care has to be taken to force program to execute above 16 Meg line?
i want to store 20 digits . h will u do it in cobol ?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?
How do get the result of your program directly on your pc?
What the difference is between continue and next sentence?