In for test there are three pass modes for function
arguments. They are rarely used since pass mode always
default to the most used one. Pls name them and specify
which one is a default?
Answer Posted / pooja
The following table describes the pass modes for function
arguments.
Pass mode
in : The default. Specifies an input argument, used when
you only want to get the argument's value. Any changes made
to this argument are not reflected outside of the function.
out : Specifies an output argument, used when you only
want to set the argument's value. This argument is modified
in a function and the new value is passed back out of the
function when the function ends.
inout : Specifies an input and output argument, used when
you want to get the argument's current value and you want
the function to change that value and pass the new value
out.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How to open an existing silktest project?
How to create a test frame?
can we test the application by inserting checkpoints using silktest as we do in qtp and winrunner and also what are the automation frameworks in silktest
What is the dom browser extension?
How to run a test case from a test script file?
What is the segue testing methodology?
How to define an object verification in a test case?
how to pass TDS intery in tally?
How to select a group of test cases in a testplan to run?
What is stored in a test frame?
How to include a test case into a testplan?
Hi All, An newbiee to silk test tool. I wanted to write a function which checks the browser type installed in the local machine & then based on the browser type test case should run. I tried little bit writing the function : Void Func_ValidateBrowserType() Window myWin myWin = Browser.GetRealBrowser () print (myWin) Any help please.. Thanks, V
What is the standard flow of execution of a test case?
What is the syntax of ui object identifier used by dom extension?
How to download latest silk test trial version?