What does the IS NUMERIC clause establish ?
Answers were Sorted based on User's Feedback
Answer / jana.gadi
IS NUMERIC CLAUSE is used to test wheather the given
identifier is numeric or not
Is This Answer Correct ? | 28 Yes | 0 No |
Answer / smijo
incase u redefine X(9) to 9(9).. and if value of x(9) is 'AAAAA' , then if you display the redefined numeric variable it will also show 'AAAAA'. so to check the numeric variable actually contains numeric data like 9999 you can use IS NUMERIC.
if X(9) contains 999999999 then ur if variable is numeric will be true
Is This Answer Correct ? | 5 Yes | 1 No |
What is reference modification? What is UNION in sql and syntax? What is the difference between GDGS and VSAM? Which is prefer one? What is processing groups in endevor?
System Testing for Mainframe Developers What is System Testing? integration testing ? what's the procedure ..
what is the advantage of sync class
2 input fles: 2 flat files, with different number of records. both are having unique key for each record and already sorted in ascending order . match these files using unique key and in output only matching key value has to be written. please procide cobol logic
Explain fixed length record in cobol? with suitable example
How many sections are there in data division in COBOL?
If we use GO BACK instead of STOP RUN in cobol?
HOW TO MOVE REDEFINES CLAUSE FROM INPUT TO OUTPUT ?
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?
where do u use low-value and high value in cobol
I've one string with spaces ( I N D I A ). My question is I want remove the spaces & combine in to single string without space (INDIA).How we can write the cobol program & wich options we need to use. Please let me know.
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.