77 a pic x(4) value '1234' -----> instead of this 'abcd'
77 b pic 9(4) value zeros.
move a to b
what is the answers for both cases?
IS it possible? Give me elementary move rules briefly......

Answers were Sorted based on User's Feedback



77 a pic x(4) value '1234' -----> instead of this 'abcd' 77 b pic 9(4) value..

Answer / amarnath reddy

Hi,

That is wrong answer. we can get that result when we MOVE A
TO B. result is 1234.
because A is declared as alphanumeric and B is declared as
numeric but here A is intialized all numeric values(1234)
only and move to the B is also numeric So not possible to
get any abend.

Is This Answer Correct ?    5 Yes 0 No

77 a pic x(4) value '1234' -----> instead of this 'abcd' 77 b pic 9(4) value..

Answer / mithlesh

It is not possible to move alphanumaric to numaric data type
it will throw soc7 error at runtime.

Sco7 is the abend . which come when mismatch problem
occured.

Is This Answer Correct ?    4 Yes 1 No

77 a pic x(4) value '1234' -----> instead of this 'abcd' 77 b pic 9(4) value..

Answer / subra kondaveeti

Hello All, Move a alpha numeric field to Numeric fields doesn't necessarily gives a soc7 because it depends upon the what the alpha-numeric field contains.
for example value of 'ABCD' in teh alpha-numeric field ALSO MOVES 1234 to numeric field. if you look at the assembly instruction produced for the move statement is

moven which means ignore the zone portion of each byte and move the numeric value of the byte. but it can give soc7 if you move '----' to numeric field because it tries to move x'CACACACA' to numeric field. if you look at the numeric portion of every byte is 'A' and hence can't be moved

Is This Answer Correct ?    3 Yes 0 No

77 a pic x(4) value '1234' -----> instead of this 'abcd' 77 b pic 9(4) value..

Answer / satish kumar

hello all, yes it is possible to move alphanumeric to
numeric but not numeric to alphanumeric.if we are moving
alphanumeric character "abcd" to numeric. The compiler
accepts the first three characters as same and the remaining
last character it takes ascii value/code of last character 'd'.

pgm1: 77 a pic x(4) value "abcd".
77 b pic 9(4) value zeros.
move a to b.
o/p: abc4

pgm2: 77 a pic 9(4) value 1234.

77 b pic x(4).
move a to b.
o/p: 1234

in this case the compiler can move the numeric values to
alphanumeric directly.

Is This Answer Correct ?    3 Yes 0 No

77 a pic x(4) value '1234' -----> instead of this 'abcd' 77 b pic 9(4) value..

Answer / amarnath reddy

Hi Vinod,

If we move to only numeric values but alphanumeric data
item into numeric data item, We not possible to get any
abend. If we move to alphabetic values (abcd) to numeric
data item we can get the abend soc7.

Is This Answer Correct ?    1 Yes 0 No

77 a pic x(4) value '1234' -----> instead of this 'abcd' 77 b pic 9(4) value..

Answer / vinodquestion

Hi Mr. Amar. Thank you for your answer. Then wat about 'abcd'..

Is This Answer Correct ?    0 Yes 0 No

77 a pic x(4) value '1234' -----> instead of this 'abcd' 77 b pic 9(4) value..

Answer / himanshu

Mr Amarnath,i would advise you to read and understand
question properly.And please dont mark ur answer correct
yourself.its irritating.

Is This Answer Correct ?    0 Yes 0 No

77 a pic x(4) value '1234' -----> instead of this 'abcd' 77 b pic 9(4) value..

Answer / amarnath reddy

Hi Himanshu,

you read and try to understand my answer. I posted my answer
is Those cases not possible only when we move 1234 to b data
item that is accepted otherwise move abcd to b data item
possible to get the abend soc7.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More COBOL Interview Questions

Syntax for JCLLIB & JOBLIB???

1 Answers  


subscript and index r not coded in u r application program what will happen?

2 Answers  


Sending data is aplhabetic size 7 (value 3000), I wantated this value to be stored in database, which is defined as s9(7)v9(2)comp-3.

2 Answers  


what is the coding difference between COBOL and CICS.

8 Answers   Cap Gemini,


what is jcl approach for programming?

4 Answers   IBM,


) How do u handle errors in BMS macro?

1 Answers   IBM,


A table has two indexes defined. Which one will be used by the SEARCH?

1 Answers  


What happens when we move a comp-3 field to an edited (say z (9). Zz-)?

1 Answers  


I want to remove a duplicates form a given input field using cobol program. please Any one help me out to solve this ... Thanks in Advance.

3 Answers   IBM,


after udatingg first 110 rows, my job abends. now how do i change my cobol program so that when i restart the Job it will start updating from 111th row ( i.e in next run I di=ont want to update those 110 rows which are already been updated in the first run before job abend)

7 Answers   Allianz, Wipro,


What are the various section in data division and briefly explain them.

1 Answers  


if we display var1 then what will b displayed in below condition. 77 var1 pic s9(2) value -10. 77 var1 pic s9(2) value -11. " " " -12. " " " -13. -14 ... ... -19.

3 Answers   IBM, Steria,


Categories