Answer Posted / deepak goyal
Causes the item to be aligned on natural boundaries. Can be
SYNCHRONIZED LEFT or RIGHT.
For binary data items, the address resolution is faster if
they are located at word boundaries in the memory. For
example, on main frame the memory word size is 4 bytes.
This means that each word will start from an address
divisible by 4. If my first variable is x(3) and next one
is S9(4) COMP, then if you do not specify the SYNC clause,
S9(4) COMP will start from byte 3 ( assuming that it starts
from 0). If you specify SYNC, then the binary data item
will start from address 4. You might see some wastage of
memory, but the access to this computational field is
faster.
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
What is the use of intialize verb?
How you can characterize tables in cobol?
For rewrite, why is it mandatory that file needs to be opened?
What are declaratives and what are their uses in cobol?
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
can you please let me know if there is any walkins for COBOL/PLI/DB2/IMS/JCL in pune other than IBM and ITC infotech
What is the default value(s) for an initialize and what keyword allows for an override of the default?
How do you reference the fixed block file formats from cobol programs
Difference between array and sub-script ?
Write a program to explain size error.
What kind of error is trapped by on size error option?
What the difference is between continue and next sentence?
What are the different rules for performing sort operation?
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
what happens if parmparameter passes zero bytes to the program