what is difference between cobol and cobol/400
Answer / srinivas
COBOL (Common Business Oriented Language), developed in 1959 by a group called Conference on Data Systems Language
(CODASYL). First COBOL compiler was released by December 1959.
First ANSI approved version – 1968
Modified ANSI approved version – 1974 (OS/VS COBOL)
Modified ANSI approved version – 1985 (VS COBOL 2)
COBOL/400 is the standard COBOL adopted by IBM for the AS400 system. It differentiates in the sense that the file handling for reports and subfiles, indicator usage and any other feature specific to AS400 have been incorporated in it.
| Is This Answer Correct ? | 5 Yes | 2 No |
Can printer files (having 133 characters) be of variable length?
what is Pic 9v99 Indicates?
i want to learn mainframe..any websites and material to learn from basic..? my mail id : rajeswaribe2010@gmail.com
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
we can use set true for condition names.. similarly can we code set to false in cobol pgm? will it work?
What are the differences between OS VS COBOL and VS COBOL II?
1) can we display the index?
consider two data items 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
in a indexed file what is procedure for read the records from 12 to 18. please give the code example
What are the steps you go through while creating a COBOL program executable?
What will happen if we generate GDG +2 version instead of +1 version?
COMP?