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 |
Which of the following EDITind and PICTURE symbols is to be used if a minus(-) is to appear before the value if the value is -ve and a plus(+) is to appear before the value if the value is +ve? (a) + (b) - (c) + OR (d) It is not possible
can we read records in a file from botom to top. if possible how can we read
in the TIME parameter we r giving hours r minutes
what is difference between the sysabend and userabend?
Explain Restart Logic in Cobol?
what is the result of the following? DIVIDE A INTO B GIVING C. a.C=A/B b.the reminder of B/A is stored in C c.C=B/A d.the reminder of A/B is stored in C
How to change size of Initial number of records to *NOMAX for ALL PF files from perticular library, how can I do that
I have the requirement to compare the two files and pick up the matching records. File 1. file2 23 32 32 13 34 15 35 36 36 35 43 Get the matching records from this 2 files to out file. how you will do this in cobol program?
15 Answers ADP, Broadridge, CTS, HSBC, L&T, RBS, TCS,
Which division and paragraphs are mandatory for a COBOL program?
How do you sort in a COBOL program? Give sort file definition, sort statement syntax and meaning.
consider the following two IF statements: IF X AND NOT Y MOVE A TO B IF Z=1 OR 9 MOVE A TO B select one of the following data divusion entries which gives identical results for both the above IF statements a.01 Z PIC 9 88 X VALUE 1.9 88 Y VALUE 0.2 THRU 8 b.01 Z PIC 9 88 X VALUE 0.2 THRU 8 Y VALUE 1.9 c.01 Z PIC 9 88 X VALUE 1.9 88 NOT-Y VALUE 0.2 THRU 1.9 d.none of yhe above
Explain how will you differentiate between an internal and an external sort, the pros and cons, internal sort syntax etc