Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How to Write user defined functions?

Answers were Sorted based on User's Feedback



How to Write user defined functions?..

Answer / jinsha

First we have to define the function and then we have to
call the function.
Eg:
to define a function
integer biger(integer a,integer b)
if (a>b)
return a
else
return b
save the file with .inc extension as x.inc
Now to call a function
Use x.inc
test case userfn1()
int a=10
int b=5
int c=biger(a,b)
print("{c}is greater")

Is This Answer Correct ?    2 Yes 0 No

How to Write user defined functions?..

Answer / kkamalay

Hi Padmaja,
with silktest you can write user defined functions as same
as c, c++

<returntype> <functionName> (Arguments list)
--------------
------------
statements
return

eg:1
Integer simpleAdd(Integer a, Integer b)
Integer c=0
c=a+b
return c

eg: 2

Void PrintStatement(String msg)
Print(msg)

Is This Answer Correct ?    1 Yes 0 No

How to Write user defined functions?..

Answer / suresh

USER defined function can be written as we write them in C/
the syntax:
return type functionname(list of arguments)
]//@@@@@@@@
simple example
//@@@@@@@@@@

int sum(int a ,int b)
int sum
sum=a+b
return sum

Is This Answer Correct ?    3 Yes 3 No

Post New Answer

More Silk Test Interview Questions

How record a test case into a testplan automatically?

0 Answers  


Which tag in silk is the most reliable in a scenario where content and order of object change frequently?

5 Answers   IBM,


What is the wait statement in Silktest?

4 Answers   CTS, IBM,


How to download latest silk test trial version?

0 Answers  


what type of frameworks are you using in silk test?

3 Answers   Stag Computers,


How to select a group of test cases in a testplan to run?

0 Answers  


Why should we use Silk test .we can use QTP or other tool .What is the difference.

4 Answers  


What are the types of text lines in a testplan file?

0 Answers  


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

0 Answers  


What is the advantage of using do except instead of other error logging functions?

2 Answers   IBM,


What are the default testplan attributes?

0 Answers  


Define Silk Testing.

5 Answers  


Categories