The order of precedence of arithmetic operators in an
expression can be
overridden with the use of
(a) []
(b) ()
(c) {}
(d) Any of the above
Answers were Sorted based on User's Feedback
How can you get the ksds file records into your cobol program?
Can a REDEFINES clause be used along with an OCCURS clause? if yes, 01 WS-TABLE. 03 WS-TABLE-EL OCCURS 5 TIMES PIC X(1) VALUE 'A'. 03 WS-EX REDEFINES WS-TABLE-EL PIC X(5). What can you expect? if no,why?
what is redefines? where it can be effectively use for the purpose of memory utilization? give an example?
What is the difference between working storage copybook and linkage section copybook?
I have a cobol program with a sub program. How ca i find that it is a dynamic call? or static call..?
I have a PS file and I would like to manually insert the binary values (like a COMP format) into the file. How can i do that? the way do in COMP-3 format.. suppose i want to insert -12345 in to file in comp-3 format. simply we can open a file in edit mode and do HEX-ON and insert the value . SEE BELOW-- 135 24D in 3 bytes - this will be COMP-3 presenatation of -12345.
Extract only those records from a PS file which are having word 'TEXT' in the records using COBOL? The word TEXT is not present in a particular position in all the records.
What is the maximum length of a field you can define using COMP-3 in COBOL?
What are the different data types available in COBOL?
what is meaning by design document? who can repared for this?
what is SYNCHRONIZATION?
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?