1.What is the default print format in cobol?
Answers were Sorted based on User's Feedback
Answer / lakshmisudha
dump is correct answer when if u r using IDCAMS utility
print command in Vsam in that time DUMP is correct
in cobol DEFAULT IS CORRECT
| Is This Answer Correct ? | 2 Yes | 1 No |
Is this allowed? 01 WS-TABLE. 03 FILLER-X PIC X(5) VALUE 'AAAAA'. 03 WS-EX REDEFINES FILLER-X OCCURS 5 TIMES PIC X(1). can redefines clause be used with occurs clause?
How many times the loop runs here 01 a pic 9(2) value 10. perform para1 a times stop run. para1: move 20 to a.
What is redefines clause in COBOL?
Identify the invalid dataname from the following: (A) savings-account (B) annual-allocation-for-overhead (C) samount250 (D) 12demand
what is the meaning of pic 9(09)v99-
write a cobol logic. i have file that has 10 records .1 record go to first output file and second record goes to 2 output and etc
What is the difference beetween Arrays and Tables in Cobol? please dont give the answer that arrays in cobol terminology is called tables......
in the TIME parameter we r giving hours r minutes
I want to declare a field with data type Double in my COBOL program. how shall i do that ?
How to read records in reverse order in flat file? I know we can do it by reading all records into an array.... Then read records in reverse order by using subscript or index but can any body give me the exact code.
How many maximum number of procedures can we write in one COBOL program?
OCCURS clause is used in the DATA DIVISION on data names at (a) 01 level (b) 77 level (c) 88 level (d) any level from 02 to 49