if you give cylinder(1,1)how many cylinders it will be allocate?
Answers were Sorted based on User's Feedback
Answer / nag(igate)
this is VSAM question.
the maximum extents to secondary is depend on the files
used:
For sequential: 15
for VSAM : 123
in this case the answer is : 1+1*123=124 cylinders
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / nagaraj ramamoorthy
it depends based on the size of the file.
when the dataset is created, 1 cylinder(primary quantity)
will be allocated. When the primary quantity is utilised
completely then the secondary quantity will be extended 1
cylinder. likewise it will extend 16 secondary extends for
seq files..
| Is This Answer Correct ? | 2 Yes | 1 No |
Consider the following COBOL entries: 05 X PIC 99 VALUE 10. SUBTRACT 20 FROM X. The resultant value of X wil be
copy 100 records without using ibm utilities
What is 88 level used for ?
Why is it necessary that file needs to be opened in I-O mode for REWRITE?
What is diff betn PS and ESDS file? What is the diffrent compiler options in cobol and there discription? What is retrive nth maximum salary from salary DB2 table. Can we redefine COM-3 variable with varchar variable?
. How do we cast a variable in COBOL
When is a scope terminator mandatory?
Why occurs can not be used in 01 level ?
.How to add one input & one Out file in existing cobol program. how approach tell me step by step.
When is inspect verb is used in cobol?
C1 C2 C3 are three conditions whose TRUTH values are as folloes. C1-TRUE C2-FALSE C3-TRUE A,B,C are defined as given below A:C1 AND(NOT C2) OR C3 B.(NOT C1) OR (NOT C2 AND NOT C3) C.(C1 OR C2)AND C3 D.C1 AND C2 OR C3 given the above information which of the following statements are valid? a.only A,B and C are TRUE b.only A,C and D are TRUE c.A,B,C and D are TRUE d.only C and D are TRUE
Consider the below example call a-test1. -- -- -- a-test1. if a=b perform a-test through a-exit next sentence else if b=c perform c-test through c-exit. if a=d perform d-test through d-exit. a-test. -- -- a-exit. exit. can u tell me what will happen if a=b after looping into a-exit will the control go back to a- test1. will the condition a=d be checked???