What guidelines should be followed to write a structured
Cobol program?
Answer / asmara
TOP DOWN APPROACH AND IDENTIFICATION DIVISION. AND PROGRAM-
ID. MAKE SURE FOR COMPILE FREE PROGRAM.
Is This Answer Correct ? | 0 Yes | 0 No |
Can we use goto statement in inline_perform ?
how we rectify soc7 and soc4 errors in project?
how do u link sub pgm to main pgm ?
i declare a Table as OCCURS 2000 TIMES.If the input file has more than 2000 records will the COBOL program fail?
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 maximum size of a 01 level item in COBOL I? in COBOL II?
How many bytes will be allocated for the following record description entries? 01 REC-A. 05 A PIC S9(4). 05 B PIC XXXBXXX. 05 C PIC ____9.99. 05 D PIC S9(5) COMP-3. 05 E PIC 9(3) COMP.
16 Answers IBM, TCS,
what happens when a copybook variables are declared using include statement ?
input= ,,,, mainframe training ,,, hyderabad .... location.... output1=$ mainframe training in hyderabad location$ output2=**** mainframe training in hyderabad location ****. In this pgn when we give input considering the spaces the output is displayed in this format.Like in the place of ,,,, $ should be displayed likewise.So please helpmeout.
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,
CAN ANY ONE HELP WHAT IS QTP? why it is nessery AND WEN IT IS USED?
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.