there is a file whose ORGANISATION is INDEXED.you want to
read the records
from the file in RANDOM fashion as well as
sequentially.then which of the
access mode would you specify?
a.SEQUENTIAL
b.RANDOM
c.DYNAMIC
D.ACCESS MODE has nothing to do with it
Answers were Sorted based on User's Feedback
Answer / shailendra
dynamic is the right ans.
firstly you will direct enter the no. or key element
from where you want to start to read, then you can read
sequentially.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / abinand shetty
c.dynamic as it is combination of random and sequential
| Is This Answer Correct ? | 1 Yes | 1 No |
How to resolve the soc4 and soc7 errors?
what are the steps to sort in a cobol program?
How do define Dymanic array in cobol how do u define single demensional arry and multidymensional arry in ur cobol.
Study the DATA DIVISION entries and the three PROCEDURE DIVISION entries given below: 01 END-OF-FILE-SWITCH PIC XXX. 88 NO-MORE-RECS VALUE "YES". 88 MORE-RECS VALUE "NO". (i) READ SAMPLE-FILE AT END MOVE "YES" TO NO-MORE-RECS. (ii) IF NO-MORE-RECS = "YES" GO TO LAST-PARA. (iii) IF NO-MORE-RECS GO TO LAST-PARA. Which are wrong? (a) (i) and (ii) (b) (ii) and (iii) (c) (i) and (iii) (d) all
What is SQL Code -904 and -903 in DB2 And how to handle it?
What is binary search?
input:- A 10 20 30 40 B 5 7 10 14 C 8 12 14 16.... output:- A = 100,B=36,C=50. Here spaces are considered between numbers. When we give input as above, the numbers should be added n displayed.So please help me out.
1.What is the limit of linkage section?
Write a program that uses move corresponding.
WHAT IS SOC3?HOW IT CAN BE RESOLVED?
How can we find that module can be called – whether DYNAMICALLY or STATICALLY?
is this below syntax correct? CALL 'subprg' using A,B Please help