InterviewSolution
Saved Bookmarks
| 1. |
How Will You Get The Natural Logarithm Of The Given Number In Vbscript? |
|
Answer» Using Log function, which returns the natural LOGARITHM of the given number. Example: DIM num : num = 210<BR>document.write("Log Result of NUM2 is : " & Log(num2))& "<br/>" '5.34710753071747 Using Log function, which returns the natural logarithm of the given number. Example: Dim num : num = 210 |
|