What is difference between function and procedure?
Answer Posted / archana das
1> A function can only return a value ,but procedure return
multiple values (max 1024).
2> A function is normally used for computations whereas a
procedure is used for executing business logic.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you know the location Id of an object if you know its index id?
what are the mandatory properties for a tex boxc (scenario?)
In qtp, how you can get the last character from a string?
This is a question thats generally asked in every QTP interview. What were the problems that you faced during automation and how did you resolve them?
Hi, i run scripts in one machine those r passed.when i run the scripts in client side those r failed.Give me such a scenario when ever u faced?
What r the different filters in defect in quality center
Explain different types of checkpoints?
How to build scripts that access data from external sources?
How many types of status are there?
How Can I find the least value in a bunch of variables using qtp.. E.g.:- A = 210, B = 212, C = 60, D = 111 I don’t want to write bunch of lines for this…. Is there a way to get the result in one line…..
how do you parameterize search button from the website? the page is a single winobject and i have made a virtual object button of search button but search box can't be converted into a winedit and if we try to convert it into winedit the value we enter in a searchbox appears as numbers in the script so we arent able to parameterize.help!!!
How to use Environment parameterization? Explain with an example.
An object is non standard object, i mapped it to standard object, eventhogh on mapping to standard object i cannot use the methods available on the standard object with the mapped object. How i can use those standard object methods with these mapped object. (((Note : dont tell that we can use virtual object as virtual object is to map nonstandard obj to standard obj)))
How will you check that your test cases covered all the requirements?
How to read a text file from QC using QTP. I would like to do something like this. But instead read a file from QC and NOT from my local drive. Set fso = CreateObject("Scripting.FileSystemObject") Set InputFile = fso.OpenTextFile("C:\test.txt", ForReading) Thanks