InterviewSolution
Saved Bookmarks
| 1. |
In QTP, how to declare a variable? |
|
Answer» Use DIM keyword before a variable name to declare a variable and use SET keyword before a variable name to assign value to the variable For Example “Dim weight”, here DIM keyword is used to declare weight variable.Set weight = 40, here SET keyword is used to assign value “40” to the weight variable. |
|