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...


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

Answers were Sorted based on User's Feedback



i have the following varibles in the working storage 05 ws-A PIC X(30) VALUE 'ABCD..

Answer / sandy

It will not show variable mismatch error.
It will display KLMNOPQRES.

Is This Answer Correct ?    16 Yes 2 No

i have the following varibles in the working storage 05 ws-A PIC X(30) VALUE 'ABCD..

Answer / 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

i have the following varibles in the working storage 05 ws-A PIC X(30) VALUE 'ABCD..

Answer / kk

Hi,
klmnopqrst will displayed no compilation error and runtime
error it will work normally.

Is This Answer Correct ?    8 Yes 4 No

i have the following varibles in the working storage 05 ws-A PIC X(30) VALUE 'ABCD..

Answer / giri12

KLMNOPQRST will be displayed.

Is This Answer Correct ?    4 Yes 1 No

i have the following varibles in the working storage 05 ws-A PIC X(30) VALUE 'ABCD..

Answer / venkat reddy.madathala

It will display KLMNOPQRES.

Is This Answer Correct ?    2 Yes 1 No

i have the following varibles in the working storage 05 ws-A PIC X(30) VALUE 'ABCD..

Answer / mr.perfect

i have compiled and run it , it is workign fine.
the output format is
B1:ABCDEFGHIJ
B2:KLMNOPQRES
B3:TUVWXYZ

Is This Answer Correct ?    0 Yes 0 No

i have the following varibles in the working storage 05 ws-A PIC X(30) VALUE 'ABCD..

Answer / shubham

ABCDEFGHIJ
KLMNOPQRES
TUVWXYZ

Is This Answer Correct ?    0 Yes 0 No

i have the following varibles in the working storage 05 ws-A PIC X(30) VALUE 'ABCD..

Answer / satish

It will shows variable miss match error

Is This Answer Correct ?    7 Yes 8 No

i have the following varibles in the working storage 05 ws-A PIC X(30) VALUE 'ABCD..

Answer / anand

isn't this a compilation error? A value clause cannot be
associated with a variable that is redefined.

Is This Answer Correct ?    1 Yes 6 No

Post New Answer

More COBOL Interview Questions

hw to create 3 dimensional array & hw to access it?

1 Answers  


how do you reference the rrds file formats from cobol programs

0 Answers  


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

2 Answers   TCS,


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

2 Answers  


How do you define a variable of comp-1 and comp-2?

0 Answers  


What guidelines should be followed to write a structured Cobol program?

1 Answers  


What will happen if you code GO BACK instead of STOP RUN in a stand-alone COBOL program i.e. a program which is not calling any other program ?

3 Answers  


In an EVALUATE statement, can I give a complex condition on a when clause?

2 Answers  


There is a production file which has millions of records in it.The program that uses it ends up with an SOC7 abend.It is sure that the abend is due to some invalid data in the file.Is there any way to debugg the SOC7 abend with out giving displays? I need the record which is cause for the abend.

8 Answers   Danske, iGate,


What is SET TO TRUE all about, anyway?

5 Answers  


how to create temporary data set in jcl? what is the use?

3 Answers   Cap Gemini, Temenos,


I have a file it contain 10 records.i got abend at 8th record because of soc7.how do you know that perticular record got abend?

3 Answers   IBM,


Categories