When is a scope terminator mandatory?
Answers were Sorted based on User's Feedback
Answer / guest
scope terminators are mandatory for in-line performs and
evaluate.
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / guest
scope terminators are mandatory for in-line performs and
evaluate.
Is This Answer Correct ? | 4 Yes | 0 No |
What are the different data types in cobol?
1.Is it possible to move the data from 99.99 to 99v99? 2.What is the CICS-vsam Compilation process? 3.In My GDG 5 generation will be there GDG3 got an abend what will happen? 4.In my GDG first generation is +1 And I want to add the new generation what will happen previous generation? 5.How can you give the PIC clause below conditions A). s9 (reddy), B). s9 (5) occurs 5 times? 6.How override the proc from a particular step? and what is symbolic and override Procs?
What is XDC ?
Can we redefine the field of x(200) to less than 200?
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
Will the variable POS in the following code have a value of 2 or not? 01 POS PIC S9(4) COMP VALUE 2. 01 FIRST-NAME PIC X(10) VALUE 'ABC'. 01 LAST-NAME PIC X(10) VALUE 'XYZ'. 01 NAME PIC X(20) VALUE SPACES. STRING FIRST-NAME DELIMITED BY SPACES ' ' DELIMITED BY SIZE LAST-NAME DELIMITED BY SPACES INTO NAME WITH POINTER POS
What is the local-storage section?
01rec1. 05 a pic 999v99 value 123.12 05 b pic 99v9 value 45.9 02 rec2. 05 x pic 999v99 05 y pic 99v99 05 z pic x(3) value 'abc' if rec1 is moved to rec2 then what is the value of rec2?
What is the difference between a DYNAMIC and STATIC call in COBOL?
explain sorting techniques in cobol program?
what are the limitations of Inline Perform?
I have 100 records in a file.. i want to sort the records from 5 to 5o... give the syntax...