what is the default print format? in cobol
Answers were Sorted based on User's Feedback
Answer / ashok
in cobol defalt print formate is spacess only. eaither
numaric or alphanumaric or chater also
Is This Answer Correct ? | 5 Yes | 2 No |
how can you identify wheather the program is using search or search all in the cobol program?
Is It Possible to Update or change in VIEW Mode?
Write a program to enter and display the names of students in a class using the occurs clause.
When can the USING phrase be included in the call statement ?
01 A pic 9(100) find record length of it
) How do you access the migrate the data from production region to development region
What are the different rules of SORT operation?
how to change picture class of copy book variable inside program?
How do you do in-line PERFORM?
in the TIME parameter we r giving hours r minutes
How to know whether the module is dynamical or statistical?
What is the output generated by the following code? 01 GRP-I. 05 SUBFLD1 PIC XX VALUE "AB". 05 FILTER PIC X(6) VALUE SPACES. 01 GRP-2 REDEFINED GRP-1. 05 SUB-FLD2 PIC XX. 05 SUB-FLD3 PIC XX. 05 FILTER PIC X(4). IF SUB-FLD1 NOT = SPACES DISPLAY "SUBFLD1" MOVE "ABBCCD" TO GRP-1 IF SUB-FLD3 = SPACES DISPLAY "SPACES" ELSE DISPLAY "SUBFLD3" DISPLAY "END" ELSE DISPLAY "SPACES" DISPLAY "END". (a) SUBFLD1 SUBFLD3 END (b) SPACES END (c) SUBFLD1 END (d) SUBFLD1 SPACES