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?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / jinsha
pass modes are in, out and inout. the default is in
| Is This Answer Correct ? | 0 Yes | 0 No |
How do you create a user defined class in silk?
Can we customise the result file?
Can we use regular expressions to facilitate dynamic objects identification by SilkTest?
What is 4test?
How can you read the contents of PDF using silktest?
How to record a test case?
what is the statment/command for invoke the browser from script
What are the default testplan attributes?
How to run a test case from a test script file?
How dom browser extension identify a web application ui object?
How to create a test frame?
How to do text verification point in silktest for a specific content.Suppose in the text editor, i have typed some "aaaa,bbbb,cccc,dddd" in different lines. now i want to capture only aaaa of first line from the text editor. How can i do it.Can any one help me.