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