Explain complete concept of table handling in COBOL with an
example?

Answers were Sorted based on User's Feedback



Explain complete concept of table handling in COBOL with an example?..

Answer / sivakumar sekharannair

repeated occurance of a field in a file can be defined as a
table of occurance. for example the file has records of of
a student details. it has the following fields
student name
stud registration number
stud class
student mark1
student mark2
student mark3
student mark4
student mark5
first three fields will vary in number of bytes. but 4th to
8th fields will be having same number of bytes(same
information repeated). so when we usually define a layout
for the file we will follow the below mentioned layout.
01 stud-details.
05 stud-name pic x(20).
05 stud-reg-no pic 9(9).
05 stud-class pic 9(2).
05 stud-mark1 pic 9(3).
05 stud-mark2 pic 9(3).
05 stud-mark3 pic 9(3).
05 stud-mark4 pic 9(3).
05 stud-mark5 pic 9(3).

Here we can see that for marks we have five different
fields which is wastage of space. to prevent this there is
a concept called table . by this all the five marks field
can be defined using a single field.
01 stud-details.
05 stud-name pic x(20).
05 stud-reg-no pic 9(9).
05 stud-class pic 9(2).
05 stud-mark pic 9(3) occurs 5 times
occurs clause will occupy the value of stud-mark five times
which is equal to having the mark field defined five times.

Is This Answer Correct ?    69 Yes 4 No

Explain complete concept of table handling in COBOL with an example?..

Answer / villan

Cool explanation... Hats off....

Is This Answer Correct ?    28 Yes 3 No

Post New Answer

More COBOL Interview Questions

consider two data items 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move

5 Answers   TCS,


How to Write the RESTART Logic Using COBOL?

4 Answers   GalaxE, L&T, Syntel, TCS,


Can we put move statement in COBOL copybook

3 Answers   Global Logic,


is it mandatory to give data division before procedure division ? wht happens if i give procedure division first thn data division ? reply soon

2 Answers   Patni,


1.What is the default print format in cobol?

5 Answers   HSBC,


What is the difference between performing a SECTION and a PARAGRAPH?

5 Answers   Accenture, Patni,


Is It Possible to Update or change in VIEW Mode?

5 Answers   CSC,


01 text-data pic x(100). move 'xyzdbfrjjg u' to text-data. how to find the value of last index of text-data?

3 Answers   Mind Tree,


Explain fixed length record in cobol? with suitable example

1 Answers   IBM,


How can we increase the size of an existing PDS to include more no. of modules.

3 Answers  


1) can we display the index?

3 Answers   ADP, IBM,


How do you code Cobol to access a parameter that has been defined in JCL?

3 Answers  


Categories