InterviewSolution
Saved Bookmarks
| 1. |
What is the output of A + B in VBScript if A = 5 and B = 10? |
|
Answer» + operator adds two Values as Variable Values are Numeric. So A + B will give 15. |
|