GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

GeekInterview.com  >  Tech FAQs  >  Testing
Go To First  |  Previous Question  |  Next Question 
 Testing  |  Question 33 of 629    Print  
how to recall a function in QTP

  
Total Answers and Comments: 2 Last Update: October 23, 2007     Asked by: lakshmi narasimham 
  
 Sponsored Links

 
 Best Rated Answer

No best answer available. Please pick the good answer available or submit your answer.
November 18, 2005 04:31:35   #1  
Hareesh        

RE: how to recall a function in QTP
We will use CALL function
 
Is this answer useful? Yes | No
October 23, 2007 16:15:03   #2  
krishna        

RE: how to recall a function in QTP
there is no call function in qtp..

just give the name of the function
_______________
for example

public function  login()

msgbox("ilogged in")


end function
_________________

if u want to call the above function u can simply give like bellow

login()

 
Is this answer useful? Yes | No

 Related Questions

Latest Answer : there is no call function in qtp..just give the name of the function_______________for examplepublic function  login()msgbox("ilogged in")end function_________________if u want to call the above function u can simply give like bellowlogin() ...
Read Answers (2) | Asked by : lakshmi narasimham

By using Winrunner create data driven as a unction for checking the contente of the date of flight, fly from, flyto, unable of flight button and what are the different function we have created those all function should execute without our presence also?
View Question | Asked by : pravinhs_44

Latest Answer : In web application we concentrate more on security testing. First we check the UI then functionality of each and every field as per customer requirements, checking for broken links and also navigation testing whether the particular link is taking to the ...
Read Answers (2) | Asked by : Dibya

Latest Answer : These are different frameworks for Automation Projects. ...

Latest Answer : This is a library of TSL functions. Testers not only create the scripts but can also generate them using FG ...
Read Answers (2) | Asked by : sona_maz

How to execute the test without giving wait function ? I heard something about, “optional step” that can solve the problem, but I am unable to find about that in QTP help guide. And also how to use “optional step” statement.Please reply me back so that I will not face any problem while showing demonstration to my PM.So that I can convince him that it is useful product for our application Reply waited.
Read Answers (1) | Asked by : amit

HiThis question related to Automation using QTP Testing.Iam able to open the internet explorer by invoke Application function if I wants to invoke some web site how can Iplese give me the answer it's related to my projectThanksChaithanya
Read Answers (1) | Asked by : chaithanya.kakarla

View Question | Asked by : Kpc

Could any one answer to this questions. for some i kept the answers but i'm not sure of tht answers plz can any one able to answer to all of the questions WITH DESCRIPTION 1. What does the following piece of TSL / C code do?for (i=0;i
View Question | Asked by : kerth

Latest Answer : Functional test cases covers the functional features of an application with respect to customerrequirements.......Non functional test cases covers the perfomance parameters like Load,Stress,Volume....etcThanxKiran Vollala ...
Read Answers (3) | Asked by : Mangal


 Sponsored Links

 
Related Articles

C++ Pure Virtual Function and Base Class

C Pure Virtual Function and Virtual Base Class In this C tutorial you will learn about pure virtual function declaration of pure virtual function and virtual base class virtual base class and how to implement a virtual base class explained with examples mosgoogle center What is Pure Virtual Function
 

C++ Function Passing Types

C Function Passing Types In this C tutorial you will learn about function passing types two types of arguments passing in functions passed by value  and  passed by reference are discussed here mosgoogle center The arguments passed to a function can be performed in two ways Passed
 

What is DECODE function used for?

DECODE is used to decode a CHAR or VARCHAR2 or NUMBER into any of several different character strings or numbers based on value. That is DECODE does a value-by-value substitution. For every value that is given in the DECODE function it makes an if then check and matches the value. The general format
 

printf() Function Return Value

What is the return value from printf() function? printf function always returns the number of characters printed. Let us understand this with an example: main() { int a=10; printf("%d",printf("%d %d %d", a,a,a)); } In this above program the inner printf i
 

How is the main() function declared?

The declaration of main can be done as int main() One more declaration that can be taken by main is command line arguments form int main(int argc, char *argv[]) or this can also be written as int main(argc, argv) int argc; char *argv[]; NOTE: It is not possible for one to declare the main
 

How does the function call within function get evaluated?

Whenever we have more than one function which is called for a finite number of times then such a function gets evaluated from inside out. Let us understand this concept with an example. For instance consider a function sample called within it 4 times as given in program below: main() { int a=50;
 

What happens when a variable is not initialized in main function?

When a variable is not initialized in main function it contains garbage value. This can be well seen from the example below main() { int x; printf(“%d”,x); z= sample() } sample() { printf(“Testing program”); } Output is   &n
 

What is the default return value of a function?

The default return value from a function is int. In other words, unless explicitly specified the default return value by compiler would be integer value from function.   When a programmer wants other than integer values to be returned from function then it is essential that the pro
 

What happens when a variable is not declared in function definition?

Generally in C program the function definition and calling takes the form as given below: main() { int x,y,z; z=sample(x,y); printf(“%d”,z); } sample(x1,y1) int x1,y1; { int z1; z1= x1 - y1; return(z1); } Here what happens is the values x, y gets passed to x1,y1
 

What is difference between call by value and call by reference in function?

The arguments passed to function can be of two types 1. Values passed 2. Address passed The first type refers to call by value and the second type refers to call by reference. For instance consider program1 main() { int x=50, y=70; interchange(x,y); printf(“x=%d y=%d”,x,
 





About Us  |   Privacy Policy  |   Terms and Conditions  |   Contact  |   Site Map  |   Add Question  |   Propose Category  |   RSS Feeds  |   Articles Sitemap  |   Site Updates  |   Add Resource

Copyright © 2005 - 2008 GeekInterview.com. All Rights Reserved
Page copy protected against web site content infringement by Copyscape