Write the syntax of a two dimensional array?
Answers were Sorted based on User's Feedback
Answer / praveen
WORKING-STORAGE SECTION.
01 MATA.
05 ROWA OCCURS 2 TIMES.
10 COLA OCCURS 2 TIMES PIC 9.
| Is This Answer Correct ? | 44 Yes | 11 No |
Answer / s
01 grparray.
02 month occurs 12 times index by a1.
03 week pic x(4)occurs 7 times.
| Is This Answer Correct ? | 46 Yes | 19 No |
Answer / varun v
Agree with Ans #1 and #2,
Ans #3 -- Occurs class cannot be at 01 level
| Is This Answer Correct ? | 34 Yes | 10 No |
Answer / bhanu
this is actually a question which i got.
How to initialize a two dimensional array with indexes?
can any one kindly show me the syntax..?
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / jagan
WORKING-STORAGE SECTION.
01 M-GROUP.
02 M OCCURS 6 TIMES.
03 W PIC X(4) OCCURS 4 TIMES.
| Is This Answer Correct ? | 9 Yes | 6 No |
Answer / mic
To Ans # 5 ..
We can initialize an Index By SET INDEX-NAME TO X
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / siri
TWO DIMENTIONAL ARRAY SYNTAX:-
01 WS-ARRAY
05 A OCCURS 30 TIMES
10 B OCCURS 30 TIMES
15 B1 PIC X(10)
15 B2 PIC X(10).
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / guest
01 items x(10) occurs 10 times
02 sub items pic x(10) 5 times
| Is This Answer Correct ? | 9 Yes | 68 No |
How many times the loop runs here 01 a pic 9(2) value 1. perform para1 until a=10 move 1 to a. stop run. para1: move 10 to a.
88 level entry is used for (a) data items in WORKING-STORAGE SECTION (b) items with RENAMES clause (c) condition-names (d) None of the above
The hierarchy of the execution of logical operators is (a) NOT AND OR (b) AND OR NOT (c) OR AND NOT (d) OR NOT AND
10 Answers Huawei, IBM, TCS,
) what is the difference between AID and HANDLE AID?
soc-7 is a bad data,invalid data. when ever we are moving the alphabets in the position of numeric then we got this abend. so my question is if o1 ws-data pic 9(1) value passing the alphabet some x. then we got soc-7 or not? i want clarification ?
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?
How arrays can be defined in COBOL?
There is a variable with value 19446. Requirement is to convert it to 194.46. I tried it by doing divide by 100 and my receiving field data type is 9(03)v99. But the output is 194. I am not getting the decimal value. Could anyone pls let me know how to get this done?
what happens of we dont give time stamp in precompilation process
What is the difference between binary search and sequential search?
how to transfer the file from pc to mainframe??
What does EXIT do ?