InterviewSolution
Saved Bookmarks
| 1. |
How will you get the exponent of the given number in VBScript? |
|
Answer» Using Exp function, which returns the value of e raised to the specified number. Example − Dim num : num = -645.998651document.write("Exp Result of num is : " & Exp(num))& "<br/>" '2.79479883633128E-281
|
|