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 |
1)what is use of linkage section? 2)what is difference between comp and comp-3
Name the divisions in a COBOL program ?
consider the following piece of code 01 GROSS-PAY 05 BASIC-PAY PIC 9(5) 05 ALLOWENCES PIC 9(3) if BASIC-PAY has a value 1000 and ALLOWENCES has a value of 250,what will be displayed by the statement DISPLAY GROSS-PAY a.1250 b.01000250 c.01250 d.1.250
What is a subscript ?
Can we put move statement in COBOL copybook
How do we get current date from system with century in COBOL?
how to access vsam files in cobol and how to differentiate that this is ESDS file
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?
Will the variable POS in the following code have a value of 2 or not? 01 POS PIC S9(4) COMP VALUE 2. 01 FIRST-NAME PIC X(10) VALUE 'ABC'. 01 LAST-NAME PIC X(10) VALUE 'XYZ'. 01 NAME PIC X(20) VALUE SPACES. STRING FIRST-NAME DELIMITED BY SPACES ' ' DELIMITED BY SIZE LAST-NAME DELIMITED BY SPACES INTO NAME WITH POINTER POS
Can we access the a[0] in the array ?
What is the default value of DISP for temp datasets
wht is packed decimal in cobol