How many data types are supported in Vbscript?
Answer Posted / abbas khan
There is only one Data Type in vbScript , which is able to
store any kind values such as integer, string, double, date
etc. (We term it as Varient).
To know what kind of value a variable contains,
use "TypeName" keyword.
Example :
Var1 = "abcde"
Msgbox TypeName(Var1) 'OutPut will be string
Var2 = "1234"
Msgbox TypeName(Var2) 'OutPut will be integer
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Out of the different type of operators, which are evaluated first and last in the vbscript language?
Write a Program to add 2 numbers without using operators (+,-) and without using third variable. Note: Use VBScript only Hint: You can use other operators like '/' & '*'(Division & Multiplication)
Which constant is used for print and display functions and works as same as pressing enter key?
What is the difference between for loop and while loop?
i have a problem with this error(this error related edit and
delete button,when i click this button in datagrid..i will
get this error)"Invalid postback or callback argument.
Event validation is enabled using
What is variant in vb script?
if u ve resrevation for train and u get a number supose 1234xxxokie.after sucessul entering all required fields. now u put that number in search and want to chk wether these ar same or not if both ar same then its okie otherwise test fail.what would be the vb script code for it to compare these two values of different page.
wat is the com(common object model)object for mozilla firefox???????plz if any one know the exact answer....reply me......
What are class events?
wht must be the interview question on corinthian information technology solutions incorporated.
about vb scripting programs this type of all question& answers
Mention if qtp generates vbscript code as we record actions, can't it possible to directly write using vbscript code when qtp does the same thing too?
Hi Friends my Question is very simple,in Manual testing when we click on a hyper link it directs us to the relavent page or it re-directs us to the current page,so there we can easily write testcase but same thing if we do in automation script using QTP & need to generate report using Reporter.report event how we will do it?thanks in advance...
how to check whether link is disabled in QTP??
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?