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