How many maximum number of procedures can we write in one
COBOL program?
Answers were Sorted based on User's Feedback
Answer / karimulla
15 instream procedures are coded,255 catalog procedures are
coded
| Is This Answer Correct ? | 3 Yes | 1 No |
What is the figurative constant in cobol?
Hi, My interviewer ask A calls B and C calls B, a and b are static c and b are dynamic.what happens if they compile and execute at same time.
What is the difference between a binary search and a sequential search?
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10
write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc
RENAME clause takes new SPACE in memory.TRUE or FALSE? a)TRUE 2)FALSE
How to Pass table from a cobol program to another cobol program and how to use that table in called program
What is the output generated by the following code? 01 GRP-I. 05 SUBFLD1 PIC XX VALUE "AB". 05 FILTER PIC X(6) VALUE SPACES. 01 GRP-2 REDEFINED GRP-1. 05 SUB-FLD2 PIC XX. 05 SUB-FLD3 PIC XX. 05 FILTER PIC X(4). IF SUB-FLD1 NOT = SPACES DISPLAY "SUBFLD1" MOVE "ABBCCD" TO GRP-1 IF SUB-FLD3 = SPACES DISPLAY "SPACES" ELSE DISPLAY "SUBFLD3" DISPLAY "END" ELSE DISPLAY "SPACES" DISPLAY "END". (a) SUBFLD1 SUBFLD3 END (b) SPACES END (c) SUBFLD1 END (d) SUBFLD1 SPACES
The maximum number of dimensions that an array can have in COBOL-85 is ?
hi. This is Ram.i have one doubt.why can't we display comp-3 variables directly? let me answer quickly plez........
Can we use redefine clause in occurs clause?
Explain the configuration section of a cobol program with examples of syntax.