how to access the file from prodution from changeman tool
and to submit a file to production
Answer / nag(igate)
using the checkout option to extract the file from
production.
| Is This Answer Correct ? | 3 Yes | 1 No |
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.
Suppose i have a Cobol field of 10 byte. it contains a decimal sign.How to know where is the point location?
What is the difference between a binary search and a sequential search?
How many divisions we have in Cobol ?
I've one string with spaces ( I N D I A ). My question is I want remove the spaces & combine in to single string without space (INDIA).How we can write the cobol program & wich options we need to use. Please let me know.
ZEROES and SPACES are _______ constants (a) Figurative (b) Numeric (c) Non-numeric (d) Alphabete
What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?
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
how many bytes does s9(7)COMP-3 field occupies?
why we are using set in searchall?
I have a variable account-number declared as comp-3, s9(10) comp-3 in a file. How do i find a particular account number say 123456 in that file?
given the following: 77 A PIC 9V9 VALUE 9.5 77 B PIC 9 VALUE 9. 77 C PIC V9 VALUE 0.8 77 D PIC 9 77 E PIC 9 77 F PIC 9V999 what are the contenta of D E nad F after the following statements are executed: COMPUTE F ROUNDED=A+C/B MULTIPLY A BY C GIVING E ADD B C A GIVING D ROUNDED a.F=9.589 E=8 D=1 b.F=9.589 E=8 D=9 c.F=9.589 E=7 D=9 d.F=9.589 E=7 D=1