InterviewSolution
Saved Bookmarks
| 1. |
How Will You Get The Absolute Value Of The Given Number In Vbscript? |
|
Answer» Using Abs function, which returns the absolute value of the GIVEN number. DIM num : num = -645.998651 Using Abs function, which returns the absolute value of the given number. Example: Dim num : num = -645.998651 |
|