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