InterviewSolution
Saved Bookmarks
| 1. |
Which opearator can be used to get the exponent of a number in VBScript? |
|
Answer» ^ opeator is used to get the exponent of two numbers. Example − Dim a : a = 5Dim b : b = 10Dim cc = b ^ aDocument.write ("Exponentiation Result is " &c)
|
|