what will be the output when
a)pic 9(6)value 000178 is moved to pic ***,***.
b)pic 9(5) value 57397 is moved to pic $$,$$9.
Answer Posted / rx
A. ****178
B. 57397
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Name the divisions, which are available in a cobol program?
What is a report item?
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
When is inspect verb is used in cobol?
What are the different rules to perform a Search?
How can you get the ksds file records into your cobol program?
how do you reference the ksds vsam file formats from cobol programs
What is difference between static and dynamic call in cobol?
I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......
how can i see junk values in dclgen or in hostvariable of comp ?
Which is the default, TEST BEFORE or TEST AFTER for a PERFORM statement?
) How do u handle errors in BMS macro
How did the release of cobol/370 version 1.3 improve the performance of release 1.1?
I have a File that has duplicate records. I need only those records that occur more than thrice.?
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?