what is the advantage of INOUT parameter over OUT parameter?
Answers were Sorted based on User's Feedback
Answer / m.hema kumar
inout parameter means same parameter can be used as input
and output parameter,out parameter means that it can be
used for only displaying out put.
example:
public function name(in a,inout b)
{
a=1;
b=2;
}
printf(b);
answer:3
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / shobha
that will be used in Data Driven test.
if we r passing only input for testing from
(wordpad,notepad,xcel sheet)it is called parameter.
if we r want only out to print in(wordpad,...)it is called
OUT parameter,
if we want both in&out to read&print in(wordpad,...)it is
called INOUT parameter.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the function that can be used to get the length of the edit box, other than 'Length(outvariable)' ?
What do you verify with the gui checkpoint for single property and what command it generates, explain syntax?
How can you do debugging in winrunner?
How to find the local host name using winrunner ?
how do you know which software with version(ex.msoffice)available in our system,using tsl functions
How do you that one record was entered in to a particular table using winrunner?
What is the difference between writing a function and writing a script?
when start testing
Where are multiple properties of object stored
hye.when we do recording,objects r indentified by GUI map editor.and respective script is generated.But my problem is that in GUI map editor objects r not stored-not their description.I tried 'LEARN' option in GUI map,even it is not working.So that i can't run my script.Tell me solution Thank you.
Let us assume there is a web-table, In this web table we have no.of Rows and Coloumns , in a Row/Coloumn(like 3*2 i.e 3rd row 2nd coloumn)is a weblist , in this web list we have almost 6links , then we click anylink a new window will activated! How can we write the script for ?? in QTP
how to reverse the string using function