Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What will happen if we move SPACES to numeric field and
ZEROES to alphabetic field?

Answers were Sorted based on User's Feedback



What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?..

Answer / varun v

1) Move Spaces to Numeric field:

Here program would give compilation error saying Spaces
to Numeric integer did not follow the "MOVE" statement
compatibility rules.

2) Move Zeroes to Alphabetic field:

Would work fine with Movement of Zeroes to the
Alphabetic field.

Is This Answer Correct ?    20 Yes 4 No

What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?..

Answer / aliya

It will give SOC7.

Is This Answer Correct ?    9 Yes 5 No

What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?..

Answer / ram.g

ans to last ans

anything you can move to alpha...provided ..ur input is w/n
quotes...


ans to ur qn...

its quite possible by using redefine command...

the field will be sharing same memorylocation..

eg: 05 ws-num pic 99
10 ws-char redefines ws-num pic x(2)

move 12 to ws-num
move 'ab' to ws-char

Is This Answer Correct ?    4 Yes 0 No

What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?..

Answer / ram.g

sorry for post 3 2nd ans

it supposed for the qn ...x(7) to 9(9) nd vice versa..
plz refer the qn...

Is This Answer Correct ?    3 Yes 0 No

What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?..

Answer / sivakumar sekharannair

compile error will occure if zeroes moved to alphabetic
field or spaces moved to numeric field.

Is This Answer Correct ?    5 Yes 4 No

What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?..

Answer / jayaprabhu

spaces to umeric field will give data exp error soc7

bocz we cant move the spaces to numeric field

Zeroes to alphabetic we cant bcoz zeroes is numeric we cant
move into the alphabetic if we move it will give soc7

But using redefines we can moves num-alpa, alpa -num
these kind we use for copybook where in if you have one
field need to change for num/alpa.instead going for new
copybook .

Is This Answer Correct ?    1 Yes 1 No

What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?..

Answer / thavasi

all above answers are incorrect.


Move SPACES to numeric field:
=============================

Moving spaces/non-numeric to numeric won't give any
compilation error or S0C7.

S0C will occur only when u do computation with non-numeric data.

ZERO to alphabetic field:
========================

MOVing ZEROS to alphabetic - will result in compilation error.

Is This Answer Correct ?    5 Yes 7 No

Post New Answer

More COBOL Interview Questions

In COBOL programming, what is PERFORM? What is VARYING?

0 Answers   CDC,


COMPUTE X = A * B - C * D and COMPUTE X = (A * B) - (C * D) (a) Are not the same (b) Are same (c) Syntactically wrong (d) Will yield a run time error

1 Answers   TCS,


What is the default value of DISP parameter?

3 Answers   IBM,


What is JOBLIB and STEPLIB in JCL? what is the purpose of using it?

1 Answers  


Differentiate COBOL and COBOL-II?

0 Answers  


Can we move X(7) to S9(7) COMP?

1 Answers  


ID DIVISION. PROGRAM-ID. PLO. DATA DIVISION. WORKING-STORAGE SECTION. 01 VAR1 PIC 9(2). 01 VAR2 PIC X(2). PROCEDURE DIVISION. ACCEPT VAR2. MOVE VAR2 TO VAR1. STOP RUN. if i give 'PI' in var2 then what will b output of progr. any abend?????

6 Answers   TCS,


suppose a cobol programme A calling programme B,C and D. If C undergoes some change what if A,B,C,D need to be recompiled or only C nee to be recompliled.

2 Answers   IBM,


What is LENGTH in COBOL II?

2 Answers   CSC,


i have variable record in the 5th, i want to sort from 5th filed ? how ?

2 Answers   TCS,


How do you compile cobol program..?

1 Answers  


What is the difference between a DYNAMIC and STATIC call in COBOL?

2 Answers  


Categories