RSS Feed for LoadRunnerCategory: LoadRunner

Load Testing interview questions »

1.What criteria would you use to select Web transactions for load testing?
2.For what purpose are virtual users created?
3.Why it is recommended to add verification checks to your all your scenarios?
4.In what situation would you want to parameterize a text verification check?
5.Why do you need to parameterize fields in your virtual user script?
6.What are the reasons [...]

What is the difference between Product-based Company and Projects-based Company? »

Product based company develops the applications for Global clients i.e. there is no specific clients. Here requirements are gathered from market and analyzed with experts.
Project based company develops the applications for the specific client. The requirements are gathered from the client and analyzed with the client.

Can we read and assign the content of a text file to a variable. »

file_open(file_name);
str = “”;
line=””;
while( file_getline (file_name,line) ==0 )
{
str = str & line;
}