What is SSRANGE, NOSSRANGE ?

Answers were Sorted based on User's Feedback



What is SSRANGE, NOSSRANGE ?..

Answer / ms. stanley

SSRANGE is a compiler option used to handle an array overflow
Default Compiler Option is NOSSRANGE and hence when required
to handle the overflow condition, SSRANGE Compiler Option
needs to be specified in the COBOL Program (The first Line
of the program)

Is This Answer Correct ?    57 Yes 5 No

What is SSRANGE, NOSSRANGE ?..

Answer / harish

suppose in your program your are using array occurs 10 time

in this case if you use NOSSRANGE (WHEN YOUR PROGRAM TRY TO
ACCESS 11TH TIME PROGRAM WILL NOT ABEND INURN IT ENDS THE
LOOP,ERROR FREE)

SUPPOSE IN CASE OF SSRANGE

YOUR PROGRAM STOP WITH ERROR ,PROGRAM ABENDS,(I THINK SOC4)



Harish poomgame shivappa
NIIT Technolgies
Kolkata

Is This Answer Correct ?    41 Yes 6 No

What is SSRANGE, NOSSRANGE ?..

Answer / msa

I think this is how.

=COLS> ----+----1----+----2----+----3
****** *****************************
000001 PROCESS NOSSRANGE

Is This Answer Correct ?    9 Yes 3 No

What is SSRANGE, NOSSRANGE ?..

Answer / avinanda mukherjee

Stanley, please le me any example to introduce SSRANGE in
COBOL program..

Is This Answer Correct ?    4 Yes 0 No

What is SSRANGE, NOSSRANGE ?..

Answer / laxman

SSRANGE is compiler option,array is overflow means declare
in 10 and access 11th position,the program does not
abend.default is NOSSRANGE,u want SSRANGE in your program
declare in first line of program.

Is This Answer Correct ?    6 Yes 3 No

Post New Answer

More COBOL Interview Questions

Difference between next and continue clause

4 Answers   Kanbay,


What are various search techniques in cobol? Explain.

0 Answers  


how many bytes does s9(7)COMP-3 field occupies?

6 Answers   ADP,


What is the maximum length of a field you can define using COMP-3?

4 Answers   Complex System, Infosys,


what is linkcard in cobol?

1 Answers   TCS,






how we can reverse the string in the cobol for example satheesh can be reveresed as hseehtas

3 Answers   IBM,


What is the difference between NEXT SENTENCE and CONTINUE?

2 Answers   Mphasis,


What is the difference between write & move in COBOL?

3 Answers   CSC, HHB,


WE HAVE 5 DIFFERENT RECORDING MODE IN COBOL.FIXED, FIXEDBLOCK, VARIABLE, VARIABLEBLOCK AND UNDEFINED. WHAT IS THE DIFFERENCE AMONG ALL AND WHICH TYPE OF FORMAT SHOULD BE USED WHEN

3 Answers   Infosys,


a pic s9(4) comp b pic s9(4) comp-3 c ???????????????? d ???????????????? move a to c add a+B giving d. what is ur declaration for c,d?

4 Answers  


How many bytes S(8) comp field occupy and its maximum value?

0 Answers  


01 var1 pic s9(9)v99. 01 var2 pic x(30). procedure division. move 12345.99 to var1. move12345.99 to var2. display var1. display var2. what is the output?

2 Answers   IBM,


Categories