What is difference between COBOL and VS COBOL II?.
COBOL is developed and deployed in 1985. It runs in 24 bit addressing mode. But VS COBOL - II runs in 31 bit addressing mode.
Is This Answer Correct ? | 0 Yes | 0 No |
wht is packed decimal in cobol
How do you sort in a COBOL program? Give sort file definition, sort statement syntax and meaning.
A LESS 1200 IF B GREATER 25 MOVE 47 TOC ELSE MOVE 57 TO C IF A GREATER 249 MOVE 67 TO C ELSE NEXT SENTENCE ELSE IF B LESS 67 MOVE 27 TO C What will be the value of C, when A is 137 and b is 25
WE HAVE 2 FILES IN COBOL. ONE IS FIXED LENGTH RECORDS ANOTHER ONE IS VARIABLE LENGTH. IF I DECLEAR LRECL OF FIXED ONE AS 80 AND 2ND RECORD AS 132. WHAT WE NEED TO DECLEAR LRECL FOR THOSE 2 FILES IN JCL?
What is an index for tables?
Can you call an OS VS COBOL pgm from a VS COBOL II pgm ?
i have a sequencial file contains multiple records, i want to extract one row which contains various fields like order number,date,warehouse,.ect.. in to the another file by accepting the order number from jcl. how can i do it. pls help me..
What are the rules of the move verb?
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10
why mainframe we use not like java as frontend oracle as backend. or not word excel.In there also huge ammount data stored.
What is the difference between index and subscript?
i have mainprogram and subgram...if i compile mainprogram without stop run..what will u get in compilation time?