InterviewSolution
Saved Bookmarks
| 1. |
Which Opearator Can Be Used To Check If Two Numbers Are Equal Or Not In Vbscript? |
|
Answer» <> operator is USED to check if two NUMBERS are equal or not. Example: Dim a : a = 5 <> operator is used to check if two numbers are equal or not. Example: Dim a : a = 5 |
|