InterviewSolution
Saved Bookmarks
| 1. |
What is the output of A & B in VBScript if A = 5 and B = 10? |
|
Answer» & operator concatenates two values. So A + B will give 510. |
|