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

Answer Posted / dimpy19

b. 01000250

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?

694


Give the syntax of job specifying jcl statement.

636


Explain the hierarchy levels in jcl?

1116


Are there any set of rules for the names of the steps used in a job? What are they?

610


Mention the types of job control statements?

680






what sort card you will use to copy the data from one dataset to another dataset?

724


How do you overcome this limitation ?

693


When The Define Jcl Is Not Available, How Can You Get Information About A Vsam File's Organisation ?

741


how you can access an uncataloged dataset in a JCL?

649


How to execute 2nd and 4th steps among 5 steps in jcl proc?

747


how do you access an uncataloged dataset in a jcl?

827


What is the purpose of dd * statement in jcl?

793


What is the function of the steplib dd statement?

737


Explain the function of the dd dcb keyword?

694


WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375

1033