i made it to stage 3 of an interview process wednessday
they will quiz my knowledge again face to face for an
analyst role recruiter said it will be based on Business
requirements system is cobol and good ideas what they might
ask etc
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of comp2 ? where can we use it with example ?
What is an explicit scope terminator?
What are the pertinent COBOL
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?
The disposition parameter in the jcl is share ( DISP+SHR ) and the program opens file in extend mode what will happen?
what are the working storage fields in BMS macro?
wht r the advantages of 77 level number ?
how to run sub programs using static and dynamic call ...
wht is packed decimal in cobol
I have 2 dimensional array with having 100 elements. So how to find the 11th item in an array?
consider the following piece of code 01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable
can i give 9(10) in comp 3 instead of s9(10) ? if i can give wht would be ths ans