InterviewSolution
Saved Bookmarks
| 1. |
How Will You Get The Square Root Of The Given Number In Vbscript? |
|
Answer» Using Sqr function, which returns the SQUARE root of the GIVEN number. Example: Dim num : num = -210 Using Sqr function, which returns the square root of the given number. Example: Dim num : num = -210 |
|