How to convert bunch of words in a line to relvant ASCII
values?
Answers were Sorted based on User's Feedback
What is wrong with the following data declaration? 01 W-DATE PIC X(6). 05 DD PIC 99. 05 MM PIC 99. 05 YY PIC 99. (a) Nothing is wrong. (b) Under W-DATE all level 05 items are having a PIC 99 but level 01 has PIC X(6). (c) PIC can't be specified for a group item. (d) DD, MM, and YY are invalid datanames.
Program A calls program B. Will the working storage variables declared in program B be initialized every time it is called by program A or will the values be retained until the end of program A?
How do you define a variable of COMP-1? COMP-2?
How will 128 be saved in s9 (3) comp-3 How will 12 be saved in s9 (2) comp
Explain complete concept of table handling in COBOL with an example?
can we display comp-3 variables. if we want to display what we have to do . give me one example
why mainframe we use not like java as frontend oracle as backend. or not word excel.In there also huge ammount data stored.
can we read in input the file with a variable length ? please , how ..could you help me ?
what is the difference between implicit and explicit scope terminator with example?
i have 10 names in an array and my name is one of them also array is not in sorted order i need to display my name using index how will i do this
In a program, there are 2 sections defined say SECTION-A and SECTION-B. There is a paragraph say CALC-INT in both the sections. If this para has to be called directly for SECTION-A, then PERFORM CALC-INT will not work as it is present in both sections. How the PERFORM statement has to be coded here?
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