narayan


{ City }
< Country > india
* Profession *
User No # 37516
Total Questions Posted # 0
Total Answers Posted # 3

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 17
Users Marked my Answers as Wrong # 8
Questions / { narayan }
Questions Answers Category Views Company eMail




Answers / { narayan }

Question { Semantic Space, 55170 }

What are default add-ins in qtp?


Answer

Yes, it takes Windows add in

Is This Answer Correct ?    8 Yes 6 No

Question { 4787 }

hi
i want how to know how to explain the load runner process
please explain iam having the interivew


Answer

Load testing typically consists of five phases:
1) Planning 2)Script creation 3)Scenario definition 4)
Scenario execution and 5) Results Analysis.
> Plan Load Test - Define your performance testing
requirements, for example, number of concurrent users,
typical business processes, and required response times.
> Create Vuser Scripts - Capture the end-user activities
into automated scripts.
> Define a Scenario - Use the LoadRunner Controller to set
up the load test environment.
> Run a Scenario - Drive, manage, and monitor the load test
from the LoadRunner Controller.
> Analyze the Results - Use LoadRunner Analysis to create
graphs and reports and evaluate the performance.

"Extract from LoadRunner Tutorial - 9.5"

Is This Answer Correct ?    5 Yes 2 No


Question { HCL, 10161 }

write a script to display mirror image of a entered value
and also check whether Palindrome


Answer

print("Enter the no. to check for Palindrome : ");
$no = ;
chop($no);

$i = 0;

# Store into a array
while($no != 0)
{
@array[$i] = $no % 10;
$no = int($no / 10);
$i++;
}

$i--;
$j=0;
$flag = "true";

# Check for Palindrome
while( ($flag eq "true" )&& ( $j < @array/2) ){
if (@array[$j] != @array[$i])
{
$flag = "false"
}
$i--;
$j++;
}

# Print the result
if( $flag eq "true")
{
print("It is a Palindrome\n");
}
else
{
print("It is NOT a Palindrome\n");
}

Is This Answer Correct ?    4 Yes 0 No