i have the following varibles in the working storage
05 ws-A PIC X(30)
VALUE 'ABCDEFGHIJKLMNOPQRESTUVWXYZ '
05 WS-B REDEFINES WS-A
10 WS-B1 PIC X(10).
10 WS-B2 PIC 9(10).
10 WS-B3 PIC X(10).
If I Display B1, B2 and B3 respectively, what is the value
displayed in B2
Answer Posted / jibin jacob
there is no error.....
it will display 'klmnopqrst'
***********code************
identification division.
program-id. fst.
environment division.
data division.
working-storage section.
01 qs pic x(30) value
'abcdefghijklmnopqrstuvwxyzabcd'.
01 qs-r redefines qs.
02 qs-r1 pic x(10).
02 qs-r2 pic 9(10).
02 qs-r3 pic x(10).
01 aa pic 9.
procedure division.
p1.
accept aa.
display "r1=" qs-r1.
display "r2=" qs-r2.
display "r3=" qs-r3.
stop run.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
what happens if parmparameter passes zero bytes to the program
How to change size of Initial number of records to *NOMAX for ALL PF files from perticular library, how can I do that
When is inspect verb is used in cobol?
What are different data types in cobol?
Name the divisions, which are available in a cobol program?
how do you reference the ksds vsam file formats from cobol programs
What are various search techniques in cobol? Explain.
How can we find that module can be called – whether DYNAMICALLY or STATICALLY?
how to refer the data field?
What are the access modes of START statement?
if we have " ibm mainframe ",in that how to remove first and last leading space eg:"ibm mainframe" like that the answer we need
If you are current on the owner of a set, what is the difference between an obtain next and obtain first? Actually in which topic will we use dis???Plz explain it clearly
What is a report item?
What is the problem of ordered sequential files access?
What is the utilization of copybook in cobol? Could we utilize a similar copybook?