What will happen if we move SPACES to numeric field and
ZEROES to alphabetic field?
Answers were Sorted based on User's Feedback
Answer / varun v
1) Move Spaces to Numeric field:
Here program would give compilation error saying Spaces
to Numeric integer did not follow the "MOVE" statement
compatibility rules.
2) Move Zeroes to Alphabetic field:
Would work fine with Movement of Zeroes to the
Alphabetic field.
Is This Answer Correct ? | 4 Yes | 5 No |
how to code in cobol while using variable block file?
wirte a pgm in using files in which we hav 10 ,20,30 40...100 records in inputfile and i want them to be send to outputfile in reverse order. PLZ HELP ME OUT .........THIS IS A RECENT QUESTION IN IGATE..
IF I mention stop run in CICS what happens?
I have a COBOL main program which is calling sub program, the number of calling parameters used in main program are 4 whereas in sub program it's 5. Sub program is passing 5 parameters back to main program Will there be any compilation error? Or main program parameters displays junk values?
How is sign stored in a comp-3 field?
Can you please let me know the centre name of INS certification in Kolkata.
In which area will you utilize 88 level items in cobol?
if a file has 1000 recods how copy the records from 1 to 100 records using sort
What was removed from COBOL in the COBOL II implementation?
What is EIBCALEN? Why it is used?
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
I have 2 dimensional array with having 100 elements. So how to find the 11th item in an array?