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


study the data discriptions and answer the questions given below
i)01 ORDER RECORD
05 OUT-HEADER PIC X(50)
05 ITEM-COUNT PIC 99
05 OUT-ITEM PIC X(20) OCCURS 1 TO 20 DEPENDING
ON ITEM-COUNT
ii)01 NAME-AND-ADDRESS
05 N-AND-A-LINE OCCURES 5
05 LINE-LENGTH PIC P9
05 N-AND-A-CHAR PIC X OCCURS 1 TO 20 DEPENDING ON
LINE-LENGTH
iii)01 SALES-LIST
05 SALESMAN-COUNT PIC 99
05 SALES PIC 9(6) OCCURS 1 TO 100
DEPENDING ON
SALESMAN-COUNT
iv)01 ORDER-RECORD
05 NO-OF-BRANDS PIC 99
05 BRAND-PURCHASED OCCURS 1 TO 15 DEPENDING ON
NO-OF-BRANDS
which of the following is true?
a.i) and iii) are valid
b.i) and iv) are valid
c.i) and iii) are not valid
d.all are valid

Answers were Sorted based on User's Feedback



study the data discriptions and answer the questions given below i)01 ORDER RECORD ..

Answer / craig

Actually, none will compile because they are all missing
periods, and several have typos.

Assuming they all had periods where required, these are the
other errors...

i would not compile because ORDER RECORD needs a '-' ie.
ORDER-RECORD.

i)01 ORDER RECORD
05 OUT-HEADER PIC X(50)
05 ITEM-COUNT PIC 99
05 OUT-ITEM PIC X(20) OCCURS 1 TO 20 DEPENDING
ON ITEM-COUNT

ii would not compile because LINE-LENGTH has a picture
clause of P9, which is invalid

ii)01 NAME-AND-ADDRESS
05 N-AND-A-LINE OCCURES 5
05 LINE-LENGTH PIC P9
05 N-AND-A-CHAR PIC X OCCURS 1 TO 20 DEPENDING ON
LINE-LENGTH

iii will compile, but SALESMAN-COUNT cannot have a value
greater that 99

iii)01 SALES-LIST
05 SALESMAN-COUNT PIC 99
05 SALES PIC 9(6) OCCURS 1 TO 100
DEPENDING ON
SALESMAN-COUNT

iv will compile and has no errors other than missing
periods that I see.

iv)01 ORDER-RECORD
05 NO-OF-BRANDS PIC 99
05 BRAND-PURCHASED OCCURS 1 TO 15 DEPENDING ON
NO-OF-BRANDS

Is This Answer Correct ?    3 Yes 1 No

study the data discriptions and answer the questions given below i)01 ORDER RECORD ..

Answer / suriya prakash

C IS THE ANSWER

Is This Answer Correct ?    0 Yes 0 No

study the data discriptions and answer the questions given below i)01 ORDER RECORD ..

Answer / ram.g

what's the wrong in option (i)? ...

Is This Answer Correct ?    0 Yes 0 No

study the data discriptions and answer the questions given below i)01 ORDER RECORD ..

Answer / prasanna

ORDER RECORD is not a valid declaration fo a group item. It
has to be ORDER-RECORD.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More COBOL Interview Questions

What is the significance of 'above the line' and 'below the line'?

2 Answers   Nokia,


what is the minimum number of lines a Cobol program should have to successfully compile and run

7 Answers  


I have to write to a outfile where the number of records in that file should be the header of that file using IMS.. can anyone help me in this issue

0 Answers   IBM,


What are the different data types in cobol?

0 Answers  


i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?

0 Answers  


What is Control Break processing ?

1 Answers   iGate,


What do you understand by passing by reference and passing by content?

1 Answers  


how to submit a jcl by cobol program. clear me with an example.

3 Answers   HCL,


Explain about level numbers?

3 Answers  


What is the Purpose of POINTER Phrase in STRING command in COBOL?

0 Answers   Winsol Solutions,


For rewrite, why is it mandatory that file needs to be opened?

0 Answers  


01 A pic 9(100) find record length of it

6 Answers   TCS,


Categories