What is the utilization of copybook in cobol?
No Answer is Posted For this Question
Be the First to Post Answer
How to concatenation one or more string?
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
How to convert bunch of words in a line to relvant ASCII values?
can we read records in a file from botom to top. if possible how can we read
DATAONLY, MAPONLY functionality?
What will happen if a variable is declared as below.. Explain with an example? Working storage section:- 01 WS-VARX PIC X(10) VALUE 'ABCDEFGHIJ'. 01 WS-VARN REDEFINES WS-VARX PIC 9(5) VALUE '12345'. What will happen I want Display WS-VARX and WS-VARN?
How many bytes do a s9 (7) comp-3 field occupy?
Consider the following: 77 A PIC 9(10) 77 B PIC 9(10) 77 C PIC 9(19) MULTIPLY AB BY B GIVING C Which of the following is true ? (a) The execution of the above may result in size error. (b) The execution of the above will result in size error. (c) The definition of C is invalid resulting in compilation error. (d) No error will be thee and the program would proceed correctly.
what happens when a copybook variables are declared using include statement ?
What is comp-1 and comp-2?
how can we code index in an array of cobol pgm?
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