InterviewSolution
Saved Bookmarks
| 1. |
What Does The Is Numeric Clause Establish ? |
|
Answer» IS NUMERIC can be USED on ALPHANUMERIC items, SIGNED numeric & packed decimal items and usigned numeric & packed decimal items. IS NUMERIC returns TRUE if the item only consists of 0-9. However, if the item being TESTED is a signed item, then it may contain 0-9, + and - . IS NUMERIC can be used on alphanumeric items, signed numeric & packed decimal items and usigned numeric & packed decimal items. IS NUMERIC returns TRUE if the item only consists of 0-9. However, if the item being tested is a signed item, then it may contain 0-9, + and - . |
|