how to write basic programs in VB Script like addition,
multiplication?
Answer Posted / dev
1.addition
DIM A=10
DIM B=20
DIM C
DIM D
C=A+B
MSGBOX C (here output is 1020)
C=INT A+INT B
MSGBOX C (HERE OUTPUT IS 30)
D=A*B
MSGBOX D (OUTPUT IS 200)
| Is This Answer Correct ? | 84 Yes | 54 No |
Post New Answer View All Answers
How to make professional test report using vbscript code in UFT, which gives us complete analysis of the test.
Out of the different type of operators, which are evaluated first and last in the vbscript language?
How to take whole text output from screen of Bitmap Application.
How can you create a file object to work with the files in the vbscript language?
Explain about scrrun.dll in vbscript?
Write program for identifyig duplicates in flight Departing from and Arriving in mercury tours(web application).
Can we create Crystal Report object in QTP?If yes then what it is and what are its various properties?
What is the difference between function and procedure?
Explain about the functionality of vb script?
how to write validation function for date in vb script
Could Anybody Please tell me What is the script for Find 3rd Largest element in the Array without using a SORT function int Find(int arr[], int size); Thanks in Advance..
Compare java script and vb script?
Which command is used for writing text on a page?
In the Web page we have a table link, if we click on that link all the contents under that link will be sorted (asscending/Descending). Now i want to check in which order the list is ? for that i need to get the data in to some var How can i get that cells data?
What are the valid scopes of a variable in vbscript?