grasshopper
New User
Joined: 22 Jul 2021 Posts: 12 Location: germany
|
|
|
|
The following declaration applies to the TAB table:
DCL TAB (4,0:3,-4:-1) CHAR (01);
Which of the following statements will result in an indexing error?
- A = TAB (1,0,1)
- A = TAB (-1,0,1)
- A = TAB (0,0,0)
- A = TAB (3,3,3)
- A = TAB (3,3,-3)
- A = TAB (0,-1,-3)
- A = TAB (2,1,-2) |
|