subscript and index r not coded in u r application program
what will happen?
Answers were Sorted based on User's Feedback
Answer / kiran
nothing will happen
instead of subscript and index
we have to write same data repeatedly which occurs multiple
times.
if we use subscript it means occurance of same data multiple
times
by using index we can preform operations fast y bcoze using
index reffers to register variable as we knw if we perform
actions using index variable always fast
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ganesh
YOu need to code it if you get tired of typing same data
which is being used in program
| Is This Answer Correct ? | 1 Yes | 0 No |
How does IDMS communicate with CICS?
how do u link sub pgm to main pgm ?
How to retain the Duplicates in the one records?
Consider the following: 77 A PIC 9(10) 77 B PIC 9(10) 77 C PIC 9(19) MULTIPLY AB BY B GIVING C Which of the following is true ? (a) The execution of the above may result in size error. (b) The execution of the above will result in size error. (c) The definition of C is invalid resulting in compilation error. (d) No error will be thee and the program would proceed correctly.
how will u retreive value from a table.write it with syntex. 01 ws-table 05 ws-table1 occurs 10 times. 05 ws-table2 occurs 10 times. the above is 2 dimensional array..how will u retrieve 1st element of an array
How to print 10 to 1 if the input have only 10 digit number?
how you read control card into array?
How do pass the values to the parameters in cobol
If my program receives input feed from program in other system.. if the receiving field size is less than the sending field.. what abend will be happening.
01 WS-NAME PIC X(10) OCCURES 2. by this we can get ws-name 2 times. My qustion is how can we access the second name
A cobol program to read a file , match it with other if. If match occurs then write it to an output file. If no match then no need to write it.Error log created by program to track any error.
I have put two write operations in a single para for two different conditions.Will that lead to an abend or run successfully and write two records?