QTP Interview Questions
Thursday, April 4, 2013
What is the output for below
›
round(1.5) round(2.5) Output is: 2 2 Explanation is covered in the below video:
2 comments:
Wednesday, March 6, 2013
How to delete duplicate values in an array
›
The following script works both for integers and straing arrays. Rather than using two many for loops and complex logic, it can be done wi...
Sunday, February 10, 2013
Find the sum of the digits till the sum reaches to a single digit
›
no=54563 'You can give any number you want While no>0 modValue=no mod 10 result=result+modValue no=int(no/10) ...
Sunday, February 3, 2013
How to select more than one item from a Listbox using QTP
›
We can select more than one value from any list objects like JavaList, WinList, WebList, WpfList object ect.. by using "ExtendSelect...
Saturday, February 2, 2013
Can virtual objects be definied using Descriptive Programming
›
Can virtual objects be defined using Descriptive Programming and also can we get the properties of Virtual Objects? Overview of Virtual O...
›
Home
View web version